#include <iostream> #include <map> using namespace std; int main() { int i, n; std::cin >> i; std::map<int, int> m; while(i--) { std::cin >> std::hex >> n; auto it = m.find(n); if(it == m.end()) m.insert({n, 1}); else it->second++; } if(m.size() != 15) { cout << "NIE\n"; } else { if(m[0x5A] > 1 && m[0x5B] > 1 && m[0x5C] > 1) 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 | #include <iostream> #include <map> using namespace std; int main() { int i, n; std::cin >> i; std::map<int, int> m; while(i--) { std::cin >> std::hex >> n; auto it = m.find(n); if(it == m.end()) m.insert({n, 1}); else it->second++; } if(m.size() != 15) { cout << "NIE\n"; } else { if(m[0x5A] > 1 && m[0x5B] > 1 && m[0x5C] > 1) cout << "TAK\n"; else cout << "NIE\n"; } return 0; } |