#include <bits/stdc++.h>
using namespace std;
int n;
string s;
map <string, int> zadania;
int main()
{
cin >> n;
for(int i=0; i<n; i++)
{
cin >> s;
zadania[s]++;
}
for(int i=1; i<=5; i++)
{
for(int j=1; j<=3; j++)
{
string test="";
test.push_back(char(i+48));
test.push_back(char(j+64));
if(!(zadania[test]>=2 || (zadania[test]>=1 && i<5)))
{
cout << "NIE" << endl;
return 0;
}
}
}
cout << "TAK" << endl;
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 | #include <bits/stdc++.h> using namespace std; int n; string s; map <string, int> zadania; int main() { cin >> n; for(int i=0; i<n; i++) { cin >> s; zadania[s]++; } for(int i=1; i<=5; i++) { for(int j=1; j<=3; j++) { string test=""; test.push_back(char(i+48)); test.push_back(char(j+64)); if(!(zadania[test]>=2 || (zadania[test]>=1 && i<5))) { cout << "NIE" << endl; return 0; } } } cout << "TAK" << endl; return 0; } |
English