Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
116688 陈家宝 爬楼梯 C++ 解答错误 0 0 MS 268 KB 303 2023-12-18 13:21:02

Tests(0/4):


#include<bits/stdc++.h> #define int long long using namespace std; int a[1000005],dp[1000005],c[1000005],n,w; signed main(){ cin>>n>>w; for(int i=1;i<=n;i++) cin>>a[i]; dp[0]=1; for(int i=1;i<=w;i++){ for(int j=1;j<=n;j++) dp[i]+=dp[i-a[j]]; } cout<<dp[w]; return 0; }


测评信息: