#include <bits/stdc++.h> using namespace std; int n; int T[20]; int main() { cin>>n; for (int i=0; i<n; ++i){ int A=0; string B; cin>>B; A+=(B[0]-'1')*3; A+=B[1]-'A'+1; ++T[A]; } for (int i=1; i<=15; ++i) if ((i<=12&&T[i]<1)||(i>=13&&T[i]<2)){ cout<<"NIE"; return 0; } 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 | #include <bits/stdc++.h> using namespace std; int n; int T[20]; int main() { cin>>n; for (int i=0; i<n; ++i){ int A=0; string B; cin>>B; A+=(B[0]-'1')*3; A+=B[1]-'A'+1; ++T[A]; } for (int i=1; i<=15; ++i) if ((i<=12&&T[i]<1)||(i>=13&&T[i]<2)){ cout<<"NIE"; return 0; } cout<<"TAK"; return 0; } |