比赛 |
NOIP水题争霸赛 |
评测结果 |
AAAAAAATTT |
题目名称 |
博士的密码 |
最终得分 |
70 |
用户昵称 |
pztl |
运行时间 |
4.118 s |
代码语言 |
C++ |
内存使用 |
0.22 MiB |
提交时间 |
2018-02-11 21:02:26 |
显示代码纯文本
#include<iostream>
#include<cstdio>
using namespace std;
int n,key;
int a[50],ans;
void dfs(int x,int sum)
{
if(x == n+1)
{
if(sum == key)
ans++;
return ;
}
dfs(x+1,sum+a[x]);dfs(x+1,sum);
}
int main()
{
freopen("password1.in","r",stdin);
freopen("password1.out","w",stdout);
cin >> n >> key;
for(int i = 1;i <= n;i++)
{
scanf("%d",a+i);
}
dfs(1,0);
cout << ans << endl;
return 0;
}