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
#include <bits/stdc++.h>
using namespace std;

string t[200];

multiset < string > secik;

int n;

int main()
{
    cin >> n;

    for(int i = 1; i <= n; i++)
        cin >> t[i];

    for(int i = 1; i <= n; i++)
    {
        secik.insert(t[i]);
    }

    if( secik.count("1A") >= 1 && secik.count("1B") >= 1 && secik.count("1C") >= 1 && secik.count("2A") >= 1 && secik.count("2B") >= 1 && secik.count("2C") >= 1 && secik.count("3A") >= 1 && secik.count("3B") >= 1 && secik.count("3C") >= 1 && secik.count("4A") >= 1 && secik.count("4B") >= 1 && secik.count("4C") >= 1 && secik.count("5A") >= 2 && secik.count("5B") >= 2 && secik.count("5C") >= 2)
        cout << "TAK" << endl;
    else
        cout << "NIE" << endl;
}