比赛 |
NOIP模拟赛by mzx Day2 |
评测结果 |
WWWWEEEEEE |
题目名称 |
拯救紫萱学姐 |
最终得分 |
0 |
用户昵称 |
Lare |
运行时间 |
0.699 s |
代码语言 |
C++ |
内存使用 |
0.28 MiB |
提交时间 |
2016-10-20 21:15:55 |
显示代码纯文本
#include<iostream>
#include<cstdio>
#include<cstring>
using namespace std;
int main()
{
freopen("savemzx.in","r",stdin);
freopen("savemzx.out","w",stdout);
char zf[500],front[250],behind[250],zfc[500];
int l,hmyc=0,www[2]={0,0},hhh,ll;
scanf("%s",&zf);
l=strlen(zf);
for(int i=0;i<l/2;i++)
{
hhh=0;
strncpy(zfc,zf,i);
for(int j=1;j<=i;j++)
{
ll=strlen(zfc);
strncpy(front,zf,i);
behind[i]=zfc[l-i];
if(strcmp(front,behind)==0)
{
break;
}
else
{
zfc[ll-j]='\0';
hmyc++;
}
hhh+=hmyc*hmyc;
}
if(hhh>www[2])
{
www[1]=www[2];
www[2]=hhh;
}
}
printf("%d",www[1]+www[2]);
fclose(stdin);
fclose(stdout);
return 0;
}