#include <cstdio> #include <cstring> using namespace std; int c[5][3]; int main() { int n; scanf("%d", &n); memset(c, 0, sizeof(c)); for (int i = 0; i < n; i++) { char s[3]; scanf("%s", s); int nr = s[0] - '1'; int poz = s[1] - 'A'; if (nr < 4) { c[nr][poz] = 1; } else { if (!c[nr][poz]) c[nr][poz] = 1; else c[nr][poz] = 2; } } int ret = 0; for (int i = 0; i < 5; i++) { for (int j = 0; j < 3; j++) { ret += c[i][j]; } } if (ret == 18) { printf("TAK"); } else { printf("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 | #include <cstdio> #include <cstring> using namespace std; int c[5][3]; int main() { int n; scanf("%d", &n); memset(c, 0, sizeof(c)); for (int i = 0; i < n; i++) { char s[3]; scanf("%s", s); int nr = s[0] - '1'; int poz = s[1] - 'A'; if (nr < 4) { c[nr][poz] = 1; } else { if (!c[nr][poz]) c[nr][poz] = 1; else c[nr][poz] = 2; } } int ret = 0; for (int i = 0; i < 5; i++) { for (int j = 0; j < 3; j++) { ret += c[i][j]; } } if (ret == 18) { printf("TAK"); } else { printf("NIE"); } return 0; } |