#include<bits/stdc++.h> using namespace std; int a,w,k; int tab[16]; string s,s1; int main() { cin>>a; for(int i=1; i<=a; i++) { cin>>s; if(s[1]=='A') { w=s[0]-'0'; tab[w]++; } if(s[1]=='B') { w=5+(s[0]-'0'); tab[w]++; } if(s[1]=='C') { w=10+(s[0]-'0'); tab[w]++; } } for(int i=1; i<16; i++) { if(tab[i]==0) { continue; } else { k++; } } if(tab[5]>1 && tab[10]>1 && tab[15]>1) { k++; } if(k==16) { cout<<"TAK"; } else cout<<"NIE"; return 0; }
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 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 | #include<bits/stdc++.h> using namespace std; int a,w,k; int tab[16]; string s,s1; int main() { cin>>a; for(int i=1; i<=a; i++) { cin>>s; if(s[1]=='A') { w=s[0]-'0'; tab[w]++; } if(s[1]=='B') { w=5+(s[0]-'0'); tab[w]++; } if(s[1]=='C') { w=10+(s[0]-'0'); tab[w]++; } } for(int i=1; i<16; i++) { if(tab[i]==0) { continue; } else { k++; } } if(tab[5]>1 && tab[10]>1 && tab[15]>1) { k++; } if(k==16) { cout<<"TAK"; } else cout<<"NIE"; return 0; } |