记录编号 379165 评测结果 AAAAAAAAAAAAA
题目名称 奶牛们的货币系统 最终得分 100
用户昵称 GravatarHeHe 是否通过 通过
代码语言 C++ 运行时间 0.005 s
提交时间 2017-03-05 20:11:54 内存使用 0.39 MiB
显示代码纯文本
#include<iostream>
#include<cstdio>
using namespace std;
#define is_num(tmp) (tmp<='9'&tmp>='0')
inline int in(){
	char tmp(getchar());
	int res(0),f(1);
	while(!(is_num(tmp)||tmp=='-'))tmp=getchar();
	if(tmp=='-')f=-1,tmp=getchar();
	while(is_num(tmp))
		res=(res<<1)+(res<<3)+(tmp^48),
		tmp=getchar();
	return res*f;
}
//#define LOCAL
int N,W,s;
long long dp[10001];
int main(){
#ifndef LOCAL
	freopen("moneysys.in","r",stdin);
	freopen("moneysys.out","w",stdout);
#endif
	N=in(),W=in();
	dp[0]=1;
	for(int i=1;i<=N;++i){
		s=in();
		for(int j=s;j<=W;++j)
			dp[j]+=dp[j-s];
	}
	printf("%lld\n",dp[W]);
}