結果

問題 No.1238 選抜クラス
ユーザー 👑 rin204rin204
提出日時 2022-07-04 17:11:44
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 94 ms / 2,000 ms
コード長 395 bytes
コンパイル時間 193 ms
コンパイル使用メモリ 82,028 KB
実行使用メモリ 81,920 KB
最終ジャッジ日時 2024-12-14 08:24:03
合計ジャッジ時間 4,429 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
63,632 KB
testcase_01 AC 56 ms
63,860 KB
testcase_02 AC 60 ms
64,732 KB
testcase_03 AC 48 ms
61,024 KB
testcase_04 AC 49 ms
61,300 KB
testcase_05 AC 50 ms
61,248 KB
testcase_06 AC 49 ms
61,296 KB
testcase_07 AC 58 ms
64,772 KB
testcase_08 AC 58 ms
65,152 KB
testcase_09 AC 62 ms
66,324 KB
testcase_10 AC 58 ms
64,508 KB
testcase_11 AC 62 ms
66,520 KB
testcase_12 AC 60 ms
65,248 KB
testcase_13 AC 61 ms
66,472 KB
testcase_14 AC 58 ms
65,420 KB
testcase_15 AC 62 ms
66,216 KB
testcase_16 AC 60 ms
65,660 KB
testcase_17 AC 94 ms
80,188 KB
testcase_18 AC 94 ms
81,920 KB
testcase_19 AC 91 ms
80,392 KB
testcase_20 AC 92 ms
79,860 KB
testcase_21 AC 90 ms
78,968 KB
testcase_22 AC 88 ms
79,856 KB
testcase_23 AC 91 ms
80,120 KB
testcase_24 AC 93 ms
80,852 KB
testcase_25 AC 91 ms
79,208 KB
testcase_26 AC 93 ms
81,056 KB
testcase_27 AC 91 ms
80,784 KB
testcase_28 AC 94 ms
80,340 KB
testcase_29 AC 93 ms
80,440 KB
testcase_30 AC 67 ms
70,484 KB
testcase_31 AC 79 ms
73,604 KB
testcase_32 AC 85 ms
76,864 KB
testcase_33 AC 58 ms
63,616 KB
testcase_34 AC 90 ms
79,436 KB
testcase_35 AC 71 ms
71,468 KB
testcase_36 AC 64 ms
67,396 KB
testcase_37 AC 68 ms
69,320 KB
testcase_38 AC 92 ms
79,604 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

MOD = 10 ** 9 + 7

n, k = map(int, input().split())
A = list(map(int, input().split()))
A = [a - k for a in A]
dp = [0] * 20200
dp[0] = 1
for a in A:
    ndp = [0] * 20200
    for i in range(-10000, 10001):
        ndp[i] += dp[i]
        ndp[i] %= MOD
        ndp[i + a] += dp[i]
        ndp[i + a] %= MOD
    dp = ndp
ans = -1
for i in range(10001):
    ans += dp[i]
    ans %= MOD
print(ans)
0