#include <iostream> using namespace std; int main() { ios_base::sync_with_stdio(0); int t,p=0,tab[44]; float x; for(int i=0; i<44; i++) { if ((i==0)||(i==1)) tab[i]=i; else tab[i]=tab[i-1]+tab[i-2]; } cin>>t; for(int i=0; i<t; i++) { cin>>x; p=0; for(int i=0; i<44; i++) { if(tab[i]==x) p=1; } for(int i=0; i<x+1; i++) { for(int j=0; j<x+1; j++) if(x/tab[i]==tab[j]) p=1; } if((p==1)||(x==1)||(x==0)) cout<<"TAK"<<endl; else cout<<"NIE"<<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 | #include <iostream> using namespace std; int main() { ios_base::sync_with_stdio(0); int t,p=0,tab[44]; float x; for(int i=0; i<44; i++) { if ((i==0)||(i==1)) tab[i]=i; else tab[i]=tab[i-1]+tab[i-2]; } cin>>t; for(int i=0; i<t; i++) { cin>>x; p=0; for(int i=0; i<44; i++) { if(tab[i]==x) p=1; } for(int i=0; i<x+1; i++) { for(int j=0; j<x+1; j++) if(x/tab[i]==tab[j]) p=1; } if((p==1)||(x==1)||(x==0)) cout<<"TAK"<<endl; else cout<<"NIE"<<endl; } return 0; } |