#include<iostream> #include<string> #include<algorithm> using namespace std; int n; int tab[20]; int translate(string s){ int x = (int)(s[0] - '0') - 1; x *= 3; if(s[1] == 'A'){ x += 1; } else if(s[1] == 'B'){ x += 2; } else x += 3; return x; } int main(){ cin >> n; for(int i = 1; i <= n; i++){ string s; cin >> s; tab[translate(s)]++; } for(int i = 1; i <= 12; i++){ if(tab[i] < 1){ cout << "NIE"; return 0; } } for(int i = 13; i <= 15; i++){ if(tab[i] < 2){ 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 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 | #include<iostream> #include<string> #include<algorithm> using namespace std; int n; int tab[20]; int translate(string s){ int x = (int)(s[0] - '0') - 1; x *= 3; if(s[1] == 'A'){ x += 1; } else if(s[1] == 'B'){ x += 2; } else x += 3; return x; } int main(){ cin >> n; for(int i = 1; i <= n; i++){ string s; cin >> s; tab[translate(s)]++; } for(int i = 1; i <= 12; i++){ if(tab[i] < 1){ cout << "NIE"; return 0; } } for(int i = 13; i <= 15; i++){ if(tab[i] < 2){ cout << "NIE"; return 0; } } cout << "TAK"; return 0; } |