#include <iostream> #include <string> #include <stdio.h> using namespace std; string a; int t[30],n,x,zuz; int main() { scanf("%i",&n); zuz=n-18; for(int i=0; i<n; i++) { cin>>a; x=int(a[0])*3+int(a[1])-212; t[x]++; if(x<12) { if(t[x]>1) { zuz--; } } else { if(t[x]>2) { zuz--; } } if(zuz<0) { printf("NIE"); return 0; } if(n<18) { printf("NIE"); return 0; } } printf("TAK"); }
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 <string> #include <stdio.h> using namespace std; string a; int t[30],n,x,zuz; int main() { scanf("%i",&n); zuz=n-18; for(int i=0; i<n; i++) { cin>>a; x=int(a[0])*3+int(a[1])-212; t[x]++; if(x<12) { if(t[x]>1) { zuz--; } } else { if(t[x]>2) { zuz--; } } if(zuz<0) { printf("NIE"); return 0; } if(n<18) { printf("NIE"); return 0; } } printf("TAK"); } |