#include<bits/stdc++.h> using namespace std; int main() { ios_base::sync_with_stdio(0); cin.tie(0); int b; string a=""; cin>>b; if(b==0) { cin>>a; bool czy=true; for(int x=0;x<a.size();x++) if(a[x]!=a[a.size()-x-1]) czy=false; if(czy==true) cout<<"TAK"; else cout<<"NIE"; } else { char c; bool czy=true; for(int x=0;x<b/2;x++) { cin>>c; a+=c; } if(b%2==1) cin>>c; if(b%2==1) for(int x=b/2+1;x<b;x++) { cin>>c; if(a.back()!=c) czy=false; a.pop_back(); } if(b%2==0) for(int x=b/2;x<b;x++) { cin>>c; if(a.back()!=c) czy=false; a.pop_back(); } if(czy==true) cout<<"TAK"; else cout<<"NIE"; } return 0; }
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 | #include<bits/stdc++.h> using namespace std; int main() { ios_base::sync_with_stdio(0); cin.tie(0); int b; string a=""; cin>>b; if(b==0) { cin>>a; bool czy=true; for(int x=0;x<a.size();x++) if(a[x]!=a[a.size()-x-1]) czy=false; if(czy==true) cout<<"TAK"; else cout<<"NIE"; } else { char c; bool czy=true; for(int x=0;x<b/2;x++) { cin>>c; a+=c; } if(b%2==1) cin>>c; if(b%2==1) for(int x=b/2+1;x<b;x++) { cin>>c; if(a.back()!=c) czy=false; a.pop_back(); } if(b%2==0) for(int x=b/2;x<b;x++) { cin>>c; if(a.back()!=c) czy=false; a.pop_back(); } if(czy==true) cout<<"TAK"; else cout<<"NIE"; } return 0; } |