#include <bits/stdc++.h> using namespace std; int a[6]; int b[6]; int c[6]; int n,x,z; char y; int main() { ios_base::sync_with_stdio(0); cin>>n; for(int f=0;f<n;f++) { cin>>x>>y; if(y=='A') { a[x]++; } if(y=='B') { b[x]++; } if(y=='C') { c[x]++; } } for(int f=1;f<5;f++) { if(a[f]<1) z=1; if(b[f]<1) z=1; if(c[f]<1) z=1; } if((a[5]<2)||(b[5]<2)||(c[5]<2)) z=1; if(z==1) cout<<"NIE"; else cout<<"TAK"; 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 | #include <bits/stdc++.h> using namespace std; int a[6]; int b[6]; int c[6]; int n,x,z; char y; int main() { ios_base::sync_with_stdio(0); cin>>n; for(int f=0;f<n;f++) { cin>>x>>y; if(y=='A') { a[x]++; } if(y=='B') { b[x]++; } if(y=='C') { c[x]++; } } for(int f=1;f<5;f++) { if(a[f]<1) z=1; if(b[f]<1) z=1; if(c[f]<1) z=1; } if((a[5]<2)||(b[5]<2)||(c[5]<2)) z=1; if(z==1) cout<<"NIE"; else cout<<"TAK"; return 0; } |