#include <iostream> using namespace std; bool check(string pat, string b) { if(pat.size()>b.size()) return 0; int j=pat.size()-1; for(int i=b.size()-1;i>=0;i--) { if(pat[j]!=b[i]) return 0; j--; if(j<0) break; } return 1; } string plusi(string a, string b) { if(a.size()>b.size()) { b='0'+b; } else if(a.size()<b.size()) { a='0'+a; } string res=""; bool prze=0; for(int i=a.size()-1;i>=0;i--) { int k=a[i]-48+b[i]-48+prze; if(k<10) { res=char(48+k)+res; prze=0; } else { res=char(48+k%10)+res; prze=1; } } if(prze) res='1'+res; return res; } int main() { ios_base::sync_with_stdio(0); unsigned long long t; cin>> t; string pat=""; while(t>0) { pat=char(t%10+48)+pat; t/=10; } string a,b,c; a="0"; b="1"; c=plusi(a,b); bool ok=0; int number=2; while(number<2000000000000000000) { if(check(pat,c)) { ok=1; break; } a=b; b=c; c=plusi(a,b); //cout<< c << endl; number++; } if(ok) { cout<< number << endl; // cout<< c << endl; } else cout<< "NIE" << 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 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 <iostream> using namespace std; bool check(string pat, string b) { if(pat.size()>b.size()) return 0; int j=pat.size()-1; for(int i=b.size()-1;i>=0;i--) { if(pat[j]!=b[i]) return 0; j--; if(j<0) break; } return 1; } string plusi(string a, string b) { if(a.size()>b.size()) { b='0'+b; } else if(a.size()<b.size()) { a='0'+a; } string res=""; bool prze=0; for(int i=a.size()-1;i>=0;i--) { int k=a[i]-48+b[i]-48+prze; if(k<10) { res=char(48+k)+res; prze=0; } else { res=char(48+k%10)+res; prze=1; } } if(prze) res='1'+res; return res; } int main() { ios_base::sync_with_stdio(0); unsigned long long t; cin>> t; string pat=""; while(t>0) { pat=char(t%10+48)+pat; t/=10; } string a,b,c; a="0"; b="1"; c=plusi(a,b); bool ok=0; int number=2; while(number<2000000000000000000) { if(check(pat,c)) { ok=1; break; } a=b; b=c; c=plusi(a,b); //cout<< c << endl; number++; } if(ok) { cout<< number << endl; // cout<< c << endl; } else cout<< "NIE" << endl; } |