You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
401 B

#include <bits/stdc++.h>
using namespace std;
typedef long long LL;
const int N = 1e4 + 10;
LL f[N];
int w[N];
int main() {
int m, n;
scanf("%d%d", &n, &m);
f[0] = 1;
for (int i = 1; i <= n; i++) scanf("%d", &w[i]);
for (int i = 1; i <= n; i++)
for (int j = w[i]; j <= m; j++)
f[j] += f[j - w[i]];
printf("%lld\n", f[m]);
return 0;
}