結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 5 ms
11,264 KB
testcase_01 AC 5 ms
11,224 KB
testcase_02 AC 6 ms
11,132 KB
testcase_03 AC 5 ms
11,236 KB
testcase_04 AC 5 ms
11,388 KB
testcase_05 AC 4 ms
11,244 KB
testcase_06 AC 4 ms
11,200 KB
testcase_07 AC 5 ms
11,264 KB
testcase_08 AC 6 ms
11,264 KB
testcase_09 AC 7 ms
11,220 KB
testcase_10 AC 5 ms
11,264 KB
testcase_11 AC 6 ms
11,216 KB
testcase_12 AC 5 ms
11,260 KB
testcase_13 AC 6 ms
11,392 KB
testcase_14 AC 7 ms
11,264 KB
testcase_15 AC 8 ms
11,392 KB
testcase_16 AC 6 ms
11,392 KB
testcase_17 AC 161 ms
11,204 KB
testcase_18 AC 153 ms
11,264 KB
testcase_19 AC 156 ms
11,392 KB
testcase_20 AC 145 ms
11,392 KB
testcase_21 AC 140 ms
11,356 KB
testcase_22 AC 160 ms
11,224 KB
testcase_23 AC 159 ms
11,264 KB
testcase_24 AC 158 ms
11,236 KB
testcase_25 AC 159 ms
11,264 KB
testcase_26 AC 160 ms
11,360 KB
testcase_27 AC 160 ms
11,264 KB
testcase_28 AC 160 ms
11,264 KB
testcase_29 AC 154 ms
11,364 KB
testcase_30 AC 18 ms
11,264 KB
testcase_31 AC 52 ms
11,224 KB
testcase_32 AC 97 ms
11,332 KB
testcase_33 AC 5 ms
11,136 KB
testcase_34 AC 118 ms
11,392 KB
testcase_35 AC 26 ms
11,264 KB
testcase_36 AC 9 ms
11,196 KB
testcase_37 AC 20 ms
11,392 KB
testcase_38 AC 144 ms
11,392 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