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
#include <iostream>
using namespace std;
int n;
char litera, liczba;
int A[6],B[6],C[6];
bool x=1;
int main(){
    std::ios_base::sync_with_stdio(0);
    cin.tie(0);
    cout.tie(0);
    cin>>n;
    for(int i=0;i<n;i++){
        cin>>liczba>>litera;
        int l=liczba-48;
        if(litera=='A')A[l]+=1;
        if(litera=='B')B[l]+=1;
        if(litera=='C')C[l]+=1;
    }
    if(A[1]<1)x=false;
    if(B[1]<1)x=false;
    if(C[1]<1)x=false;
    if(A[2]<1)x=false;
    if(B[2]<1)x=false;
    if(C[2]<1)x=false;
    if(A[3]<1)x=false;
    if(B[3]<1)x=false;
    if(C[3]<1)x=false;
    if(A[4]<1)x=false;
    if(B[4]<1)x=false;
    if(C[4]<1)x=false;
    if(A[5]<2)x=false;
    if(B[5]<2)x=false;
    if(C[5]<2)x=false;

    if(x==0){cout<<"NIE"<<"\n";}
    else cout<<"TAK"<<"\n";
    return 0;
}