結果

問題 No.1238 選抜クラス
ユーザー ああいいああいい
提出日時 2022-05-20 11:06:11
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 70 ms / 2,000 ms
コード長 393 bytes
コンパイル時間 232 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 76,928 KB
最終ジャッジ日時 2024-09-19 18:33:30
合計ジャッジ時間 3,559 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
60,288 KB
testcase_01 AC 43 ms
60,160 KB
testcase_02 AC 46 ms
61,312 KB
testcase_03 AC 39 ms
59,264 KB
testcase_04 AC 39 ms
59,136 KB
testcase_05 AC 39 ms
58,880 KB
testcase_06 AC 40 ms
58,880 KB
testcase_07 AC 44 ms
60,800 KB
testcase_08 AC 49 ms
61,184 KB
testcase_09 AC 45 ms
62,848 KB
testcase_10 AC 43 ms
61,568 KB
testcase_11 AC 44 ms
62,464 KB
testcase_12 AC 44 ms
61,696 KB
testcase_13 AC 45 ms
62,080 KB
testcase_14 AC 43 ms
61,184 KB
testcase_15 AC 45 ms
62,464 KB
testcase_16 AC 44 ms
62,336 KB
testcase_17 AC 66 ms
76,544 KB
testcase_18 AC 67 ms
76,928 KB
testcase_19 AC 65 ms
76,288 KB
testcase_20 AC 65 ms
75,904 KB
testcase_21 AC 63 ms
75,264 KB
testcase_22 AC 65 ms
75,392 KB
testcase_23 AC 66 ms
76,800 KB
testcase_24 AC 66 ms
76,416 KB
testcase_25 AC 63 ms
75,776 KB
testcase_26 AC 66 ms
76,288 KB
testcase_27 AC 70 ms
76,160 KB
testcase_28 AC 67 ms
76,800 KB
testcase_29 AC 66 ms
76,544 KB
testcase_30 AC 52 ms
65,280 KB
testcase_31 AC 57 ms
70,016 KB
testcase_32 AC 61 ms
72,704 KB
testcase_33 AC 42 ms
60,672 KB
testcase_34 AC 64 ms
74,496 KB
testcase_35 AC 55 ms
66,944 KB
testcase_36 AC 48 ms
63,488 KB
testcase_37 AC 52 ms
65,536 KB
testcase_38 AC 67 ms
76,160 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,K = map(int,input().split())
A = list(map(int,input().split()))
P = 10 ** 9 + 7

C = 10 ** 4 * 2 + 1
base = 10 ** 4
dat = [0] * C
dat[base] = 1
for a in A:
    nx = dat.copy()
    a -= K
    for i in range(C):
        if 0 <= i + a < C:
            nx[i + a] += dat[i]
            nx[i + a] %= P
    dat = nx
ans = 0
for i in range(base,C):
    ans += dat[i]
    ans %= P
print((ans-1) % P)
0