1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
// Marcin Knapik

// Potyczki algorytmiczne 2020 - runda 5 Zadanie C1

#include<bits/stdc++.h>
using namespace std;

const int mod = 1e9 + 7;

int dp[10007];

int main(){
    ios::sync_with_stdio(0);
    cin.tie(0);

    int n; cin >> n;

    vector<int> tab(n);
    for(int i = 0; i < n; i++)
        cin >> tab[i];
    sort(tab.begin(), tab.end());
    dp[0] = 1;

    for(int i = 0; i < n; i++)
        for(int j = 10003; j >= tab[i] - 1; j--)
            dp[min(10003, j + tab[i])] = (dp[min(10003, j + tab[i])] + dp[j]) % mod;

    long long ans = 0;
    for(int i = 1; i <= 10003; i++)
        ans += dp[i];

    cout << ans % mod << '\n';
}