結果

問題 No.1238 選抜クラス
ユーザー ibyiby
提出日時 2020-11-27 01:16:23
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 392 ms / 2,000 ms
コード長 437 bytes
コンパイル時間 630 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 54,144 KB
最終ジャッジ日時 2024-07-23 21:10:32
合計ジャッジ時間 10,029 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 70 ms
45,184 KB
testcase_01 AC 72 ms
45,312 KB
testcase_02 AC 91 ms
45,440 KB
testcase_03 AC 66 ms
45,440 KB
testcase_04 AC 66 ms
45,184 KB
testcase_05 AC 65 ms
45,184 KB
testcase_06 AC 66 ms
45,312 KB
testcase_07 AC 81 ms
45,184 KB
testcase_08 AC 90 ms
45,312 KB
testcase_09 AC 106 ms
45,312 KB
testcase_10 AC 85 ms
45,184 KB
testcase_11 AC 103 ms
45,312 KB
testcase_12 AC 94 ms
45,312 KB
testcase_13 AC 94 ms
45,184 KB
testcase_14 AC 91 ms
45,312 KB
testcase_15 AC 106 ms
45,440 KB
testcase_16 AC 103 ms
45,440 KB
testcase_17 AC 382 ms
50,560 KB
testcase_18 AC 372 ms
49,024 KB
testcase_19 AC 385 ms
52,736 KB
testcase_20 AC 373 ms
50,944 KB
testcase_21 AC 361 ms
50,816 KB
testcase_22 AC 367 ms
45,440 KB
testcase_23 AC 369 ms
45,440 KB
testcase_24 AC 370 ms
45,440 KB
testcase_25 AC 368 ms
45,312 KB
testcase_26 AC 386 ms
50,560 KB
testcase_27 AC 392 ms
54,144 KB
testcase_28 AC 385 ms
49,792 KB
testcase_29 AC 369 ms
49,152 KB
testcase_30 AC 156 ms
45,568 KB
testcase_31 AC 237 ms
46,464 KB
testcase_32 AC 309 ms
49,280 KB
testcase_33 AC 81 ms
45,184 KB
testcase_34 AC 330 ms
48,000 KB
testcase_35 AC 181 ms
45,952 KB
testcase_36 AC 119 ms
45,184 KB
testcase_37 AC 161 ms
45,696 KB
testcase_38 AC 368 ms
49,536 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

MOD = 10**9 + 7


def solve():
    n, k = map(int, input().split())
    a = list(map(int, input().split()))
    dp = [[0]*(40010) for i in range(110)]
    dp[0][10000] = 1
    for i, score in enumerate(a):
        v = score - k
        for j in range(20010):
            dp[i + 1][j] = (dp[i][j] + dp[i][j - v]) % MOD
    ans = sum(dp[n][s] for s in range(10000, 20010)) % MOD
    ans = (ans - 1)%MOD
    print(ans)
    return


solve()
0