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 tab[15];

int main()
{
    bool czy = true;
    string s;
    int ile;
    cin >> ile;

    for (int i = 0; i < ile; i++)
    {
        cin >> s;
        tab[(s[0] - '1')*3 + s[1] - 'A']++;
    }

    for (int i = 0; i < 15; i++)
    {
        if (i < 12 && tab[i] < 1)
        {
            czy = false;
            break;
        }

        if (i >= 12 && tab[i] < 2)
        {
            czy = false;
            break;
        }
    }

    if (czy)
        cout << "TAK" << endl;
    else
        cout << "NIE" << endl;
}