Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
5885 | 吴泽宇 | 上楼梯 | C++ | 运行超时 | 0 | 1000 MS | 248 KB | 259 | 2020-08-16 08:46:20 |
#include<bits/stdc++.h> using namespace std; int upstair(int stairs){ if(stairs<=1)return 1; return upstair(stairs-1)+upstair(stairs-2); } int main(){ int n; cin>>n; while(n--){ int a; cin>>a; cout<<upstair(a)<<endl; } return 0; }