#include <iostream> #include <string> using namespace std; int t[20]; int main() { ios_base::sync_with_stdio(0); cin.tie(nullptr); cout.tie(nullptr); int n; cin >> n; for (int i = 0; i < n; i++) { string s; cin >> s; t[(s[0] - '0') + 5 * (s[1] - 'A')]++; } bool canBuild = true; for (int i = 1; i <= 15; i++) { if (t[i] <= 0) canBuild = false; if(i % 5 == 0) if (t[i] <= 1) canBuild = false; } cout << (canBuild ? "TAK" : "NIE"); }
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 | #include <iostream> #include <string> using namespace std; int t[20]; int main() { ios_base::sync_with_stdio(0); cin.tie(nullptr); cout.tie(nullptr); int n; cin >> n; for (int i = 0; i < n; i++) { string s; cin >> s; t[(s[0] - '0') + 5 * (s[1] - 'A')]++; } bool canBuild = true; for (int i = 1; i <= 15; i++) { if (t[i] <= 0) canBuild = false; if(i % 5 == 0) if (t[i] <= 1) canBuild = false; } cout << (canBuild ? "TAK" : "NIE"); } |