#include <bits/stdc++.h> using namespace std; int help[20]; int main(){ ios_base::sync_with_stdio(0); cin.tie(0); int n,result=0; cin >> n; for(int i=0;i<n;i++){ string a; cin >> a; if(a[0]=='1' && a[1]=='A'){ help[1]++; if(help[1]==1)result++; } else if(a[0]=='1' && a[1]=='B'){ help[2]++; if(help[2]==1)result++; } else if(a[0]=='1' && a[1]=='C'){ help[3]++; if(help[3]==1)result++; } else if(a[0]=='2' && a[1]=='A'){ help[4]++; if(help[4]==1)result++; } else if(a[0]=='2' && a[1]=='B'){ help[5]++; if(help[5]==1)result++; } else if(a[0]=='2' && a[1]=='C'){ help[6]++; if(help[6]==1)result++; } else if(a[0]=='3' && a[1]=='A'){ help[7]++; if(help[7]==1)result++; } else if(a[0]=='3' && a[1]=='B'){ help[8]++; if(help[8]==1)result++; } else if(a[0]=='3' && a[1]=='C'){ help[9]++; if(help[9]==1)result++; } else if(a[0]=='4' && a[1]=='A'){ help[10]++; if(help[10]==1)result++; } else if(a[0]=='4' && a[1]=='B'){ help[11]++; if(help[11]==1)result++; } else if(a[0]=='4' && a[1]=='C'){ help[12]++; if(help[12]==1)result++; } else if(a[0]=='5' && a[1]=='A'){ help[13]++; if(help[13]==2)result++; } else if(a[0]=='5' && a[1]=='B'){ help[14]++; if(help[14]==2)result++; } else if(a[0]=='5' && a[1]=='C'){ help[15]++; if(help[15]==2)result++; } } if(result==15)cout << "TAK\n"; else cout << "NIE\n"; 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 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 | #include <bits/stdc++.h> using namespace std; int help[20]; int main(){ ios_base::sync_with_stdio(0); cin.tie(0); int n,result=0; cin >> n; for(int i=0;i<n;i++){ string a; cin >> a; if(a[0]=='1' && a[1]=='A'){ help[1]++; if(help[1]==1)result++; } else if(a[0]=='1' && a[1]=='B'){ help[2]++; if(help[2]==1)result++; } else if(a[0]=='1' && a[1]=='C'){ help[3]++; if(help[3]==1)result++; } else if(a[0]=='2' && a[1]=='A'){ help[4]++; if(help[4]==1)result++; } else if(a[0]=='2' && a[1]=='B'){ help[5]++; if(help[5]==1)result++; } else if(a[0]=='2' && a[1]=='C'){ help[6]++; if(help[6]==1)result++; } else if(a[0]=='3' && a[1]=='A'){ help[7]++; if(help[7]==1)result++; } else if(a[0]=='3' && a[1]=='B'){ help[8]++; if(help[8]==1)result++; } else if(a[0]=='3' && a[1]=='C'){ help[9]++; if(help[9]==1)result++; } else if(a[0]=='4' && a[1]=='A'){ help[10]++; if(help[10]==1)result++; } else if(a[0]=='4' && a[1]=='B'){ help[11]++; if(help[11]==1)result++; } else if(a[0]=='4' && a[1]=='C'){ help[12]++; if(help[12]==1)result++; } else if(a[0]=='5' && a[1]=='A'){ help[13]++; if(help[13]==2)result++; } else if(a[0]=='5' && a[1]=='B'){ help[14]++; if(help[14]==2)result++; } else if(a[0]=='5' && a[1]=='C'){ help[15]++; if(help[15]==2)result++; } } if(result==15)cout << "TAK\n"; else cout << "NIE\n"; return 0; } |