#include <bits/stdc++.h> using namespace std; int n; string s; int main() { ios_base::sync_with_stdio(false); cin.tie(NULL); cout.tie(NULL); cin >> n; cin >> s; for(int i = 0; i < (s.size() / 2) + 1; i ++){ if(s[i] != s[s.size() - i - 1]){ cout << "NIE"; return 0; } } cout << "TAK"; return 0; }
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | #include <bits/stdc++.h> using namespace std; int n; string s; int main() { ios_base::sync_with_stdio(false); cin.tie(NULL); cout.tie(NULL); cin >> n; cin >> s; for(int i = 0; i < (s.size() / 2) + 1; i ++){ if(s[i] != s[s.size() - i - 1]){ cout << "NIE"; return 0; } } cout << "TAK"; return 0; } |