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

using namespace std;

int change(char a)
{
    if(a == 'A')
        return 0;
    else if (a == 'B')
        return 1;
    else
        return 2;
}

bool sol()
{
    int n;
    cin>>n;
    int A[5][3] = {0};

    if(n < 18)
        return false;
    else
    {
        for (int i = 0; i < n; i++) {
            string s;
            cin >> s;

            int b = s[0] - 49;
            int c = change(s[1]);
            A[b][c]++;
        }

        for(int i = 0; i < 4; i++)
        {
            for(int j = 0; j < 3; j++)
            {
                if(A[i][j] < 1)
                    return false;
            }
        }
        for(int k = 0; k < 3; k++)
        {
            if(A[4][k] < 2)
                return false;
        }
        return true;
    }
}


int main() {

    bool a = sol();
    if(a) cout<<"TAK";
    else
        cout<<"NIE";

    return 0;
}