#include <iostream> #include <string> using namespace std; int main() { std::ios_base::sync_with_stdio(false); cin.tie(NULL); int N,p, c[]={0,0,0, 0,0,0, 0,0,0, 0,0,0, -1,-1,-1 }, Q=15; string w; cin>>N; while(N--){ cin >> w; p = (w[1]-'A')+3*(w[0]-'1'); if( (++c[p]==1) ) --Q; } if (Q) cout <<"NIE\n"; else cout <<"TAK\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 | #include <iostream> #include <string> using namespace std; int main() { std::ios_base::sync_with_stdio(false); cin.tie(NULL); int N,p, c[]={0,0,0, 0,0,0, 0,0,0, 0,0,0, -1,-1,-1 }, Q=15; string w; cin>>N; while(N--){ cin >> w; p = (w[1]-'A')+3*(w[0]-'1'); if( (++c[p]==1) ) --Q; } if (Q) cout <<"NIE\n"; else cout <<"TAK\n"; return 0; } |