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>
using namespace std;

int n, tab[4][6], czyTAK;
string pozycja;

int main ()
{
    tab[1][5]--;
    tab[2][5]--;
    tab[3][5]--;

    cin >> n;

    for(int i = 0; i < n; i++)
    {
        cin >> pozycja;

        tab[pozycja[1] - 64][pozycja[0] - 48]++;
    }

    for(int i = 1; i <= 3; i++)
        for(int j = 1; j <= 5; j++)
            if(tab[i][j] > 0)
                czyTAK++;

    if(czyTAK == 15)
        cout << "TAK";
    else
        cout << "NIE";

    return 0;
}