#include <iostream> #include <set> #include <vector> #include <utility> #include <map> #include <queue> #include <algorithm> #include <string> #include <map> using namespace std; #define PB push_back #define MP make_pair #define F first #define S second typedef long long ll; typedef pair<int, int> pii; const int INF = 1e9; int n, m; set<string> ms; int A = 0; int B = 0; int C = 0; void solve() { cin >> n; string s; for (int i = 0; i < n; i++) { cin >> s; if (s == "5A") A++; if (s == "5B") B++; if (s == "5C") C++; ms.insert(s); } if (A > 1 && B > 1 && C > 1 && ms.size() == 15) { cout << "TAK\n"; } else { cout << "NIE\n"; } } int main() { ios_base::sync_with_stdio(0); cin.tie(NULL); cout.tie(NULL); solve(); 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 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 | #include <iostream> #include <set> #include <vector> #include <utility> #include <map> #include <queue> #include <algorithm> #include <string> #include <map> using namespace std; #define PB push_back #define MP make_pair #define F first #define S second typedef long long ll; typedef pair<int, int> pii; const int INF = 1e9; int n, m; set<string> ms; int A = 0; int B = 0; int C = 0; void solve() { cin >> n; string s; for (int i = 0; i < n; i++) { cin >> s; if (s == "5A") A++; if (s == "5B") B++; if (s == "5C") C++; ms.insert(s); } if (A > 1 && B > 1 && C > 1 && ms.size() == 15) { cout << "TAK\n"; } else { cout << "NIE\n"; } } int main() { ios_base::sync_with_stdio(0); cin.tie(NULL); cout.tie(NULL); solve(); return 0; } |