# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
447372 | 2021-07-26T07:54:31 Z | osmanallazov | Palindromic Partitions (CEOI17_palindromic) | C++14 | 1 ms | 204 KB |
#include <bits/stdc++.h> using namespace std; int main() { int t,say=0; cin>>t; string s,x,y; while(t--){ cin>>s; for(int i=0;i<s.length()/2;i++){ x=x+s[i]; y=s[s.length()-1-i]+y; if(x==y){ say++; say++; x.clear(); y.clear(); } } if(s.length()%2==1 || x.length()>0){ say++; } cout<<say; say=0; } }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 1 ms | 204 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 1 ms | 204 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 1 ms | 204 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 1 ms | 204 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |