# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
670375 | Mohammad_Parsa | Palindromic Partitions (CEOI17_palindromic) | C++17 | 0 ms | 212 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
/* in the name of allah */
#include<bits/stdc++.h>
using namespace std;
#define endl '\n'
#define pb push_back
#define F first
#define S second
#define mk make_pair
typedef long long ll;
const ll N=1e6+7,mod=1e13+3,mab=27;
int main(){
ios:: sync_with_stdio(0),cin.tie(0),cout.tie(0);
int q;
cin>>q;
while(q--){
string s;
cin>>s;
ll h1=0,h2=0,t=1;
int j=s.size()-1;
int ans=0;
for(int h=0;h<=s.size()/2-1;h++){
h1=h1*mab%mod;h1=(h1+s[h]-'a')%mod;
h2=(h2+(s[j-h]-'a')*t)%mod;t=t*mab%mod;
if(h1==h2){
ans+=2;
t=1;h1=0;h2=0;
}
}
if(h1!=0 || s.size()%2==1)ans++;
cout<<ans<<endl;
}
}
컴파일 시 표준 에러 (stderr) 메시지
# | 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... |