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
#include<bits/stdc++.h>
using namespace std;
int main(){
    ios_base::sync_with_stdio(false);
    cin.tie(NULL);
    int n;
    cin>>n;
    vector<vector<int> >v(5,vector<int>(3,0));
    for(int i=0;i<n;i++){
        string s;
        cin>>s;
        int x=s[0]-49;
        int y;
        if(s[1]=='A'){y= 0;}
        if(s[1]=='B'){y= 1;}
        if(s[1]=='C'){y= 2;}
        v[x][y]++;
    }
    bool tak=true;
    for (int i=0;i<4;i++){
        if(v[i][0]<1){tak=false;}
        if(v[i][1]<1){tak=false;}
        if(v[i][2]<1){tak=false;}
    }
    if(v[4][0]<2){tak=false;}
    if(v[4][1]<2){tak=false;}
    if(v[4][2]<2){tak=false;}
    if(tak){cout<<"TAK";}
    else{cout<<"NIE";}
}