#include <iostream> using namespace std; int spr[5][3]; int main() { int n; cin >> n; for(int i = 0; i < n; i++){ char c1, c2; cin >> c1 >> c2; spr[(int)(c1)-49][(int)(c2)-65]++; } bool czy = true; for(int i = 0; i < 5; i++){ for(int j = 0; j < 3; j++){ if((i < 4 && spr[i][j] == 0) || (i == 4 && spr[i][j] < 2)){ czy = false; } } } if(czy){ 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 | #include <iostream> using namespace std; int spr[5][3]; int main() { int n; cin >> n; for(int i = 0; i < n; i++){ char c1, c2; cin >> c1 >> c2; spr[(int)(c1)-49][(int)(c2)-65]++; } bool czy = true; for(int i = 0; i < 5; i++){ for(int j = 0; j < 3; j++){ if((i < 4 && spr[i][j] == 0) || (i == 4 && spr[i][j] < 2)){ czy = false; } } } if(czy){ cout << "TAK"; } else{ cout << "NIE"; } return 0; } |