#include <stdio.h> int main() { int n, ret=0; int t[15]; for(int i = 0; i < 15; i++) { t[i] = 0; } scanf("%d", &n); for (int i = 0; i < n; i++) { char a, b; scanf(" %c%c", &a, &b); int index = (a - '1') * 3 + (b - 'A'); t[index]++; // printf("%c%c index=%d\n", a, b, index); } for(int i = 0; i < 15; i++) { if ((i < 12 && t[i] < 1) || (i >= 12 && t[i] < 2)) { printf("NIE"); return 0; } } printf("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 | #include <stdio.h> int main() { int n, ret=0; int t[15]; for(int i = 0; i < 15; i++) { t[i] = 0; } scanf("%d", &n); for (int i = 0; i < n; i++) { char a, b; scanf(" %c%c", &a, &b); int index = (a - '1') * 3 + (b - 'A'); t[index]++; // printf("%c%c index=%d\n", a, b, index); } for(int i = 0; i < 15; i++) { if ((i < 12 && t[i] < 1) || (i >= 12 && t[i] < 2)) { printf("NIE"); return 0; } } printf("TAK"); return 0; } |