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.
21 lines
361 B
21 lines
361 B
#include <bits/stdc++.h>
|
|
|
|
using namespace std;
|
|
const int N = 110;
|
|
|
|
int n, m;
|
|
int f[N];
|
|
|
|
int main() {
|
|
cin >> n >> m;
|
|
for (int i = 0; i <= m; i++) f[i] = 1;
|
|
for (int i = 1; i <= n; i++) {
|
|
int v;
|
|
cin >> v;
|
|
for (int j = v; j <= m; j++) f[j] = f[j] + f[j - v];
|
|
}
|
|
cout << f[m] << endl;
|
|
return 0;
|
|
}
|
|
|