#include <iostream> #include <map> #include <string> using namespace std; int main(){ ios::sync_with_stdio(false); cin.tie(nullptr); int n; cin >> n; map<string, int>M; while(n--){ string str; cin >> str; M[str]++; } if(M.size()==15 && M["5A"]>=2 && M["5B"]>=2 && M["5C"]>=2) 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 | #include <iostream> #include <map> #include <string> using namespace std; int main(){ ios::sync_with_stdio(false); cin.tie(nullptr); int n; cin >> n; map<string, int>M; while(n--){ string str; cin >> str; M[str]++; } if(M.size()==15 && M["5A"]>=2 && M["5B"]>=2 && M["5C"]>=2) cout << "TAK\n"; else cout << "NIE\n"; return 0; } |