結果

問題 No.1238 選抜クラス
ユーザー y61mpnly61mpnl
提出日時 2020-09-26 00:14:32
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 658 bytes
コンパイル時間 1,937 ms
コンパイル使用メモリ 200,452 KB
実行使用メモリ 19,840 KB
最終ジャッジ日時 2024-06-28 08:27:36
合計ジャッジ時間 3,377 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 4 ms
5,376 KB
testcase_03 AC 3 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 3 ms
5,376 KB
testcase_08 AC 4 ms
5,376 KB
testcase_09 AC 4 ms
6,144 KB
testcase_10 AC 3 ms
5,376 KB
testcase_11 AC 4 ms
6,016 KB
testcase_12 AC 4 ms
5,504 KB
testcase_13 AC 4 ms
5,504 KB
testcase_14 AC 4 ms
5,376 KB
testcase_15 AC 4 ms
6,144 KB
testcase_16 AC 4 ms
5,760 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 14 ms
19,200 KB
testcase_20 WA -
testcase_21 AC 14 ms
18,304 KB
testcase_22 AC 14 ms
19,520 KB
testcase_23 AC 14 ms
19,704 KB
testcase_24 WA -
testcase_25 AC 15 ms
19,680 KB
testcase_26 WA -
testcase_27 AC 15 ms
19,612 KB
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 7 ms
8,564 KB
testcase_31 WA -
testcase_32 AC 12 ms
15,912 KB
testcase_33 AC 3 ms
5,376 KB
testcase_34 WA -
testcase_35 WA -
testcase_36 AC 6 ms
6,784 KB
testcase_37 WA -
testcase_38 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
#define REP(i,b,e) for(int i=b;i<e;i++)
using ll = int_fast64_t;
const int MOD = 1e9+7;

int main(){
    int n, k;
    scanf("%d %d", &n, &k);
    int a[n];
    REP(i, 0, n){
        scanf("%d", &a[i]);
        a[i] -= k;
    }

    ll dp[1+n][20200] = {};
    dp[0][10100] = 1;
    REP(i, 1, 1+n){
        REP(j, 0, 20200){
            dp[i][j] += dp[i-1][j];
            dp[i][j] %= MOD;
            if(j<a[i-1] or 20200<=j-a[i-1]) continue;
            dp[i][j] += dp[i-1][j-a[i-1]];
            dp[i][j] %= MOD;
        }
    }

    ll ans = 0;
    REP(i, 10100, 20200) ans += dp[n][i];
    printf("%ld\n", ans-1);
    return 0;
}
0