#include<cstdio>
#include <map>
#include<iostream>
#include<string.h>
#include<algorithm>
using namespace std;
const int N=1e6+10;
typedef long long LL;
char s[N];
char s1[N];
char s2[N];
int main()
{
int i;
scanf("%s",s);
int len=strlen(s);
for(i=0;i<len/2;i++)
s1[i]=s[i];
s1[i]='\0';
int num=0;
for(i=len/2;i<len;i++)
s2[num++]=s[i];
s2[num]='\0';
int ans=strcmp(s1,s2);
if(ans)
puts("NO");
else
puts("YES");
return 0;
}
51nod 1347 【水】
转载本文章为转载内容,我们尊重原作者对文章享有的著作权。如有内容错误或侵权问题,欢迎原作者联系我们进行内容更正或删除文章。
上一篇:51nod 1344 【前缀和】
下一篇:HDU 5101
提问和评论都可以,用心的回复会被更多人看到
评论
发布评论
相关文章
-
51c大模型~合集51
大模型
大模型 -
加农炮 51Nod - 1287 + 扔盘子 51Nod - 1279
点击打开链接点击打开链接线段树维护区间最大/
线段树 51nod #include c++