#include <stdio.h> int main() { int n; scanf("%d", &n); char c[3]; int t[15]; for (int i = 0; i < 15; i++) { t[i] = 0; } for (int i = 0; i < n; i++) { scanf("%s", c); t[(c[0] - '1')*3 + c[1] - 'A'] ++; } bool ok = true; for (int i = 0; i < 15; i++) { if (t[i] < 1 || (t[i] < 2 && i>11)) { ok = false; } } printf(ok? "TAK": "NIE"); }
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 | #include <stdio.h> int main() { int n; scanf("%d", &n); char c[3]; int t[15]; for (int i = 0; i < 15; i++) { t[i] = 0; } for (int i = 0; i < n; i++) { scanf("%s", c); t[(c[0] - '1')*3 + c[1] - 'A'] ++; } bool ok = true; for (int i = 0; i < 15; i++) { if (t[i] < 1 || (t[i] < 2 && i>11)) { ok = false; } } printf(ok? "TAK": "NIE"); } |