coderzmx


私信TA

用户名:13703922842

访问量:5943

签 名:

Be patient!

等  级
排  名 929
经  验 3465
参赛次数 0
文章发表 14
年  龄 0
在职情况 学生
学  校 南昌大学
专  业 软件工程

  自我简介:

Be patient!

解题思路:

注意事项:

参考代码:

#include<iostream>

#include<cstring>

#include<string>

using namespace std;

int main()

{

char s[1001];

cin>>s;

for(int i=1;i<=strlen(s)/2;i++)

{

bool flag=true;

if(strlen(s)%i!=0) continue;

string ss(s,0,i);

for(int j=i;j<=strlen(s)-j;j+=i)

{

string test(s,j,i);

if(test!=ss){

flag=false;

break;

}

}

if(flag){

cout<<strlen(s)/ss.size();

break;

}

}

return 0;

}


 

0.0分

0 人评分

  评论区

  • «
  • »