6 条题解

  • 0
    @ 2023-10-12 21:06:13

    #include<bits/stdc++.h> using namespace std; int s,h,a[100010]={0,1}; int main() { ios::sync_with_stdio(0); cin.tie(0); cout.tie(0); int n; cin>>n; for(int i=2;a[i-1]<n;i++) { a[i]=a[i-1]+a[i-2]; if(a[i]==n) { cout<<"YES"; return 0; } } cout<<"NO"; return 0; }

    信息

    ID
    9
    时间
    1000ms
    内存
    256MiB
    难度
    3
    标签
    (无)
    递交数
    88
    已通过
    46
    上传者