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

int main()
{
    int  n;
    std::cin >> n;

    int tab[5][3] = {0};
    for (int i = 0;i < n;i++) {
        int r;
        char d;
        std::cin >> r >> d;
        r--;
        int id = d - 'A';
        tab[r][id]++;
    }

    for (int i = 0; i < 3; i++) {
        for (int j = 0;j < 4;j++) {
            if (tab[j][i] == 0) {
                std::cout << "NIE";
                return 0;
            }
        }
        if (tab[4][i] < 2) {
            std::cout << "NIE";
            return 0;
        }
    }

    std::cout << "TAK";
    return 0;
}