結果

問題 No.1238 選抜クラス
ユーザー snrnsidysnrnsidy
提出日時 2021-11-13 01:57:53
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 155 ms / 2,000 ms
コード長 1,006 bytes
コンパイル時間 2,125 ms
コンパイル使用メモリ 203,680 KB
実行使用メモリ 11,484 KB
最終ジャッジ日時 2024-05-04 18:25:11
合計ジャッジ時間 5,489 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
11,316 KB
testcase_01 AC 4 ms
11,204 KB
testcase_02 AC 5 ms
11,296 KB
testcase_03 AC 5 ms
11,200 KB
testcase_04 AC 4 ms
11,276 KB
testcase_05 AC 3 ms
11,308 KB
testcase_06 AC 4 ms
11,244 KB
testcase_07 AC 5 ms
11,288 KB
testcase_08 AC 5 ms
11,368 KB
testcase_09 AC 7 ms
11,244 KB
testcase_10 AC 4 ms
11,276 KB
testcase_11 AC 7 ms
11,332 KB
testcase_12 AC 6 ms
11,484 KB
testcase_13 AC 5 ms
11,328 KB
testcase_14 AC 5 ms
11,416 KB
testcase_15 AC 6 ms
11,368 KB
testcase_16 AC 6 ms
11,352 KB
testcase_17 AC 155 ms
11,340 KB
testcase_18 AC 145 ms
11,196 KB
testcase_19 AC 147 ms
11,236 KB
testcase_20 AC 141 ms
11,404 KB
testcase_21 AC 136 ms
11,328 KB
testcase_22 AC 154 ms
11,300 KB
testcase_23 AC 153 ms
11,416 KB
testcase_24 AC 151 ms
11,388 KB
testcase_25 AC 154 ms
11,196 KB
testcase_26 AC 153 ms
11,376 KB
testcase_27 AC 152 ms
11,196 KB
testcase_28 AC 152 ms
11,352 KB
testcase_29 AC 147 ms
11,392 KB
testcase_30 AC 17 ms
11,216 KB
testcase_31 AC 49 ms
11,236 KB
testcase_32 AC 93 ms
11,292 KB
testcase_33 AC 4 ms
11,220 KB
testcase_34 AC 116 ms
11,376 KB
testcase_35 AC 26 ms
11,396 KB
testcase_36 AC 9 ms
11,252 KB
testcase_37 AC 19 ms
11,304 KB
testcase_38 AC 138 ms
11,240 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
 
using namespace std;
    
const long long int MOD = 1e9 + 7;
int n,k,t;
vector <int> v;
long long int dp[101][10001];

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

    cin >> n >> k;

    for(int i=0;i<n;i++)
    {
        cin >> t;
        v.push_back(t);
    }

    memset(dp,0,sizeof(dp));

    dp[0][0] = 1;

    for(int i=0;i<n;i++)
    {
        for(int j=n-1;j>=0;j--)
        {
            for(int x=0;x<=10000;x++)
            {
                int xx = x + v[i];
                if(xx > 10000) break;
                dp[j+1][xx] += dp[j][x];
                dp[j+1][xx]%=MOD; 
            }
        }
    }

    long long int res = 0;

    for(int i=1;i<=n;i++)
    {
        for(int j=0;j<=10000;j++)
        {
            if(dp[i][j] > 0 && j >= i*k)
            {
                //cout << i << ' ' << j << '\n';
                res += dp[i][j];
                res%=MOD;
            }
        }
    }

    cout << res << '\n';

    return 0;
}
0