Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
114788 | 陈星云 | 爬楼梯 | C++ | 通过 | 100 | 0 MS | 256 KB | 244 | 2023-12-09 09:27:29 |
#include<bits/stdc++.h> using namespace std; int f[1111],c[1111],w[1111]; int 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]; }