比赛 NOIP水题争霸赛 评测结果 AAAAAATTTT
题目名称 博士的密码 最终得分 60
用户昵称 サイタマ 运行时间 4.119 s
代码语言 C++ 内存使用 0.06 MiB
提交时间 2018-02-11 20:30:37
显示代码纯文本
#include<cstdio>
using namespace std;
int n,i;
int k,a[61],ans=0;
void dfs(int x,int now)
{
	if(x==n+1)
	{
		if(now==k)
			ans++;
		return;
	}
	dfs(x+1,now);
	dfs(x+1,now+a[x]);
}
int lyh()
{
	freopen("password1.in","r",stdin);
	freopen("password1.out","w",stdout);
	scanf("%d%d",&n,&k);
	for(i=1;i<=n;i++)scanf("%d",&a[i]);
	dfs(1,0);
	printf("%d\n",ans);
	return 0;
}
int Main=lyh();
int main(){;}