Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
111915 | 朱悦晨 | 爬楼梯 | C++ | 通过 | 100 | 0 MS | 252 KB | 205 | 2023-11-25 09:00:36 |
#include<bits/stdc++.h> using namespace std; int n,cnt=0; int f(int x){ if (x == 1 || x == 2) return 1; return f(x - 1) + f(x - 2); } int main() { cin>>n; cout<<f(n+1)<<endl; return 0; }