#include <iostream> using namespace std; int A[10], B[10], C[10]; int main(){ ios::sync_with_stdio(0); int n; cin>>n; for(int i=0; i<n; i++){ string s; cin>>s; if(s[1]=='A'){ A[s[0]-'0']++; } else if(s[1]=='B'){ B[s[0]-'0']++; } else if(s[1]=='C'){ C[s[0]-'0']++; } } bool ok=true; for(int i=1; i<=4; i++){ if(A[i] <1 || B[i] <1 || C[i] <1 ) ok=false; } if(A[5]<2 || B[5] <2 || C[5] <2) ok=false; if(ok) cout<<"TAK\n"; else cout<<"NIE\n"; 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 | #include <iostream> using namespace std; int A[10], B[10], C[10]; int main(){ ios::sync_with_stdio(0); int n; cin>>n; for(int i=0; i<n; i++){ string s; cin>>s; if(s[1]=='A'){ A[s[0]-'0']++; } else if(s[1]=='B'){ B[s[0]-'0']++; } else if(s[1]=='C'){ C[s[0]-'0']++; } } bool ok=true; for(int i=1; i<=4; i++){ if(A[i] <1 || B[i] <1 || C[i] <1 ) ok=false; } if(A[5]<2 || B[5] <2 || C[5] <2) ok=false; if(ok) cout<<"TAK\n"; else cout<<"NIE\n"; return 0; } |