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>
#include <stdlib.h>
#include <string.h>

int main() {
	int n;
	scanf("%d", &n);
	char exs[n][3];
	for (int i = 0; i < n; i++) {
		scanf("%s", exs[i]);
	}
	char cor[][3] = { "3B", "4B", "5B", "4C", "5C", "3C", "1A", "5A", "5C", "3A", "5A", "2C", "1B", "2A", "5B", "2B", "1C", "4A" };
	bool marks[n];
	memset(marks, 0, sizeof(marks));
	bool ok = true;
	for (int i = 0; i < 18; i++) {
		for (int j = 0; j < n; j++) {
			if (strcmp(cor[i], exs[j]) == 0 && marks[j] == 0) {
				marks[j] = 1;
				ok = true;
				break;
			} else {
				ok = false;
			}
		}
		if(!ok) {
			printf("NIE\n");
			return 0;
		}
	}
	printf("TAK\n");
	return 0;
}