1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#include <iostream>
using namespace std;
short lzadan[15], n, zad;
string nr;
bool czypopr=1;
int main()
{
    ios_base::sync_with_stdio(0);
    cin >> n;
    for(int i=0; i<n; i++)
    {
        cin >> nr;
        lzadan[3*(nr[0]-49)+nr[1]-65]++;
    }
    for(int i=0; i<15; i++)
    for(int i=0; i<12; i++)
        if(lzadan[i]<1) czypopr=0;
    for(int i=12; i<15; i++)
        if(lzadan[i]<2) czypopr=0;
    if(czypopr) cout << "TAK";
    else cout << "NIE";
    return 0;
}