이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
const long long mod=1e9+7;
long long power[1000005];
int main()
{
ios::sync_with_stdio(0);
cin.tie(0);
cout.tie(0);
power[0]=1;
for (long long i=1; i<=1e6; i++)
power[i]=power[i-1]*26%mod;
long long t;
cin >> t;
while (t--)
{
string str;
cin >> str;
long long len=str.length(), x=0, y=0, cnt=0, ans=0;
for (long long i=0; i<len/2; i++)
{
x=(x*26+str[i]-'a')%mod;
y=(y+(str[len-i-1]-'a')*power[cnt])%mod;
cnt++;
if (x==y)
{
ans+=2;
x=y=cnt=0;
}
}
cout << ans+(x || len&1) << '\n';
}
return 0;
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |