Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
6106 gedongjie1 小明养猪的故事 C++ 通过 100 0 MS 252 KB 350 2020-08-23 19:43:52

Tests(1/1):


#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; }


测评信息: