Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
143833 | 陈家宝 | 爬楼梯 | C++ | 通过 | 100 | 0 MS | 244 KB | 225 | 2024-04-19 13:00:47 |
#include<bits/stdc++.h> using namespace std; int f[1111],c[1111],w[1111],n,m; int main(){ cin>>m>>n; f[0]=1; for(int i=1;i<=m;i++)for(int j=1;j<=n;j++)if(i>=j)f[i]+=f[i-j]; cout<<f[m]; return 0; }