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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
#include <bits/stdc++.h>
using namespace std;
pair<int,int>tab[205];
int main()
{
	int a,c=0,d=0,e=0,f=0,g=0,h=0,u=0,q=0,k=0,l=0,m=0,n=0,t=0,r=0,z=0;
	cin>>a;
	string b;
	for(int i=0;i<a;i++)
	{
		for(int j=1;j>0;j--)
		{	
		cin>>b;
		tab[i].first=b[j-1]-48;
		tab[i].second=char(b[j]);	
		}
	}
	sort(tab,tab+a);
	
	for(int i=0;i<a;i++)
	{
		if(tab[i].first==1)
		{
			if(tab[i].second=='A')
			c++;
			if(tab[i].second=='B')
			d++;
			if(tab[i].second=='C')
			e++;
		}
		if(tab[i].first==2)
		{
			if(tab[i].second=='A')
			f++;
			if(tab[i].second=='B')
			g++;
			if(tab[i].second=='C')
			h++;
		}
		if(tab[i].first==3)
		{
			if(tab[i].second=='A')
			u++;
			if(tab[i].second=='B')
			q++;
			if(tab[i].second=='C')
			k++;
		}
		if(tab[i].first==4)
		{
			if(tab[i].second=='A')
			l++;
			if(tab[i].second=='B')
			m++;
			if(tab[i].second=='C')
			n++;
		}
		if(tab[i].first==5)
		{
			if(tab[i].second=='A')
			t++;
			if(tab[i].second=='B')
			r++;
			if(tab[i].second=='C')
			z++;
		}
	}
	if(c>=1 &&d>=1 &&e>=1 &&f>=1 &&g>=1 &&h>=1 &&u>=1 &&q>=1 &&k>=1 &&l>=1 &&m>=1 &&n>=1 &&t>=2 &&r>=2 &&z>=2)
	{
		cout<<"TAK";
	}
	else
	cout<<"NIE";
}