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
#include <iostream>

/* run this program using the console pauser or add your own getch, system("pause") or input loop */

/*autor: Agnieszka Klich*/

using namespace std;

long long int  a1=0, a2=3, a3=0, a4=0, a5=0; 
long long int  b1=0, b2=3, b3=0, b4=0, b5=0;
long long int  c1=0, c2=3, c3=0, c4=0, c5=0;

int main(int argc, char** argv) {
	long long int ilePomyslow;
	cin >> ilePomyslow;
	string cyfraLitera;
	
	for (long long int i=0; i<ilePomyslow; ++i)
	{
		cin >> cyfraLitera;
		if(cyfraLitera=="1A") a1++;
		else if(cyfraLitera=="1B") b1++;
		else if(cyfraLitera=="1C") c1++;
		else if(cyfraLitera=="2A") a2++;
		else if(cyfraLitera=="2B") b2++;
		else if(cyfraLitera=="2C") c2++;
		else if(cyfraLitera=="3A") a3++;
		else if(cyfraLitera=="3B") b3++;
		else if(cyfraLitera=="3C") c3++;
		else if(cyfraLitera=="4A") a4++;
		else if(cyfraLitera=="4B") b4++;
		else if(cyfraLitera=="4C") c4++;
		else if(cyfraLitera=="5A") a5++;
		else if(cyfraLitera=="5B") b5++;
		else if(cyfraLitera=="5C") c5++;
	}
	
	//cout << a1 << a2 << a3<<a4<<a5<<b1<<b2<<b3<<b4<<b5<<c1<<c2<<c3<<c4<<c5;
	if(a1>=1 && b1>=1 && c1>=1 && a2>=1 && b2>=1 && c2>=1 &&a3>=1 && b3>=1 && c3>=1 &&a4>=1 && b4>=1 && c4>=1 &&a5>=2 && b5>=2 && c5>=2)
		cout << "TAK" << "\n";
	else
		cout << "NIE" << "\n";
	return 0;
}