#include <iostream>
using namespace std;
int main()
{
int n;
string zestaw = "1A1B1C2A2B2C3A3B3C4A4B4C5A5B5C5A5B5C";
string s;
int k;
cin>>n;
for(int i=0; i<n; i++)
{
cin>>s;
k = zestaw.find(s);
if(k >= 0)
{
zestaw.erase(k,2);
}
}
if(zestaw == "")
cout<<"TAK";
else
cout<<"NIE";
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> using namespace std; int main() { int n; string zestaw = "1A1B1C2A2B2C3A3B3C4A4B4C5A5B5C5A5B5C"; string s; int k; cin>>n; for(int i=0; i<n; i++) { cin>>s; k = zestaw.find(s); if(k >= 0) { zestaw.erase(k,2); } } if(zestaw == "") cout<<"TAK"; else cout<<"NIE"; return 0; } |
English