Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
6051 | 匿名用户 | 上楼梯 | C++ | 通过 | 100 | 0 MS | 248 KB | 354 | 2020-08-23 19:11:31 |
#include<bits/stdc++.h> using namespace std; int k[100000]={0}; int upstair1(int stairs1){ if(stairs1<=1)return 1; if(k[stairs1]!=0)return k[stairs1]; k[stairs1]=upstair1(stairs1-1)+upstair1(stairs1-2); return k[stairs1]; } int main(){ int n; cin>>n; while(n--){ int a; cin>>a; cout<<upstair1(a)<<endl; } return 0; }