이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
using namespace std;
const int maxn = 2e3 + 5;
char v[maxn];
int main(){
int n; cin >> n;
for(int i = 1; i <= n; i++) cin >> v[i];
if(n%2==0) {cout << "NOT POSSIBLE\n"; return 0;}
int okcnt = 0;
string ans = "";
for(int i = 1; i <= n; i++){
bool ok = true;
for(int j = 1; j <= n/2+(i<=n/2); j++){
if(j==i) continue;
if(v[j]!=v[j+(n/2)+(i<=j+n/2)-(i<j)]) {ok = false; break;}
}
if(ok){
for(int j = 1; j <= n/2+(i<=n/2); j++){
if(j==i) continue;
ans+=v[j];
}
if(okcnt) {cout << "NOT UNIQUE\n"; return 0;}
okcnt++;
}
}
if(okcnt==0) cout << "NOT POSSIBLE\n";
else cout << ans << '\n';
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |