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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
#include <iostream>

using namespace std;

int main()
{
    int n,i,j,pom;
    cin>>n;
    string tab[n];
    for(i=0; i<n; i++)
    {
        cin>>tab[i];
    }
    string lista[15];
    lista[0]="1A";
    lista[1]="2A";
    lista[2]="3A";
    lista[3]="4A";
    lista[4]="1B";
    lista[5]="2B";
    lista[6]="3B";
    lista[7]="4B";
    lista[8]="1C";
    lista[9]="2C";
    lista[10]="3C";
    lista[11]="4C";
    lista[12]="5A";
    lista[13]="5B";
    lista[14]="5C";

    for(i=0; i<12; i++)
    {
        pom=0;
        for(j=0; j<n;j++)
        {
            if(tab[j]==lista[i])
            {
                j=n;
                pom=1;
            }
        }
        if(pom==0)
        {
            pom=2;
            i=12;
        }
    }
    if(pom==2)
    {
        cout<<"NIE";
    }
    else
    {
        for(i=12; i<15; i++)
        {
            pom=0;
            for(j=0; j<n; j++)
            {
                if(tab[j]==lista[i])
                {
                    pom++;
                    if(pom==2)
                    {
                        j=n;
                    }
                }

            }
            if(pom<2)
            {
                i=15;
                pom=3;
            }
        }
        if(pom==3)
        {
            cout<<"NIE";
        }
        else cout<<"TAK";
    }






    return 0;
}