結果

問題 No.1238 選抜クラス
ユーザー AEnAEn
提出日時 2022-05-22 11:59:19
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 97 ms / 2,000 ms
コード長 402 bytes
コンパイル時間 303 ms
コンパイル使用メモリ 82,256 KB
実行使用メモリ 79,716 KB
最終ジャッジ日時 2024-09-20 12:28:14
合計ジャッジ時間 3,985 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
61,320 KB
testcase_01 AC 45 ms
62,136 KB
testcase_02 AC 48 ms
64,032 KB
testcase_03 AC 35 ms
59,140 KB
testcase_04 AC 34 ms
58,156 KB
testcase_05 AC 36 ms
58,012 KB
testcase_06 AC 34 ms
57,260 KB
testcase_07 AC 46 ms
63,152 KB
testcase_08 AC 47 ms
63,052 KB
testcase_09 AC 50 ms
65,248 KB
testcase_10 AC 47 ms
63,648 KB
testcase_11 AC 49 ms
63,632 KB
testcase_12 AC 50 ms
64,192 KB
testcase_13 AC 50 ms
64,436 KB
testcase_14 AC 49 ms
64,060 KB
testcase_15 AC 50 ms
64,056 KB
testcase_16 AC 50 ms
64,448 KB
testcase_17 AC 95 ms
79,020 KB
testcase_18 AC 95 ms
79,128 KB
testcase_19 AC 91 ms
78,312 KB
testcase_20 AC 90 ms
77,864 KB
testcase_21 AC 87 ms
78,004 KB
testcase_22 AC 90 ms
78,228 KB
testcase_23 AC 96 ms
78,400 KB
testcase_24 AC 97 ms
78,600 KB
testcase_25 AC 92 ms
77,784 KB
testcase_26 AC 90 ms
78,772 KB
testcase_27 AC 90 ms
78,472 KB
testcase_28 AC 93 ms
79,716 KB
testcase_29 AC 91 ms
79,540 KB
testcase_30 AC 59 ms
67,300 KB
testcase_31 AC 76 ms
71,808 KB
testcase_32 AC 81 ms
75,292 KB
testcase_33 AC 46 ms
63,628 KB
testcase_34 AC 84 ms
76,500 KB
testcase_35 AC 64 ms
70,220 KB
testcase_36 AC 52 ms
64,836 KB
testcase_37 AC 59 ms
67,956 KB
testcase_38 AC 90 ms
78,048 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, K = map(int, input().split())
a = list(map(int,input().split()))
mod = 10**9+7
dp = [[0]*20001 for _ in range(N)]
dp[0][a[0]-K+10000] = 1
for i in range(1,N):
    for j in range(20001):
        dp[i][j] = dp[i-1][j]
    dp[i][a[i]-K+10000] += 1
    for j in range(20001):
        dp[i][j] %= mod
        if 0<=j+a[i]-K<=20000:
            dp[i][j+a[i]-K] += dp[i-1][j]
print(sum(dp[-1][10000:])%mod)
0