1 条题解

  • 0
    @ 2023-7-5 12:10:02
    #include <bits/stdc++.h>
    using namespace std;
    int f(int x)
    {
        if (x == 0 || x == 1)
            return 1;
        return f(x - 1) + f(x - 2);
    }
    int main()
    {
        int x;
        while (cin >> x)
            cout << f(x) << "\n";
        return 0;
    }
    
    • 1

    信息

    ID
    424
    时间
    1000ms
    内存
    128MiB
    难度
    4
    标签
    (无)
    递交数
    59
    已通过
    28
    上传者