#include <iostream> #include <vector> using namespace std; int main() { int n; cin >> n; vector<vector<bool>> data { vector<bool>(5,false), vector<bool>(5, false), vector<bool>(5, false) }; for(int i = 0;i<19;i++) { string x; cin >> x; int a = x[0]-'0'-1; int b = x[1]-17-'0'; data[b][a] = true; } bool brk = false; for(int i = 0;i<3;i++) { for(int j = 0;j<5;j++) { if(!data[i][j]) { brk = true; } } if(brk) { break; } } if(brk) { cout << "NIE" << endl; }else { cout << "TAK" << endl; } }
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 | #include <iostream> #include <vector> using namespace std; int main() { int n; cin >> n; vector<vector<bool>> data { vector<bool>(5,false), vector<bool>(5, false), vector<bool>(5, false) }; for(int i = 0;i<19;i++) { string x; cin >> x; int a = x[0]-'0'-1; int b = x[1]-17-'0'; data[b][a] = true; } bool brk = false; for(int i = 0;i<3;i++) { for(int j = 0;j<5;j++) { if(!data[i][j]) { brk = true; } } if(brk) { break; } } if(brk) { cout << "NIE" << endl; }else { cout << "TAK" << endl; } } |