結果

問題 No.1238 選抜クラス
ユーザー paruf4paruf4
提出日時 2020-09-25 23:34:06
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,043 ms / 2,000 ms
コード長 462 bytes
コンパイル時間 149 ms
コンパイル使用メモリ 82,192 KB
実行使用メモリ 83,628 KB
最終ジャッジ日時 2024-06-28 08:16:09
合計ジャッジ時間 10,555 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,332 KB
testcase_01 AC 39 ms
53,024 KB
testcase_02 AC 47 ms
60,468 KB
testcase_03 AC 37 ms
53,108 KB
testcase_04 AC 38 ms
52,772 KB
testcase_05 AC 38 ms
52,484 KB
testcase_06 AC 37 ms
52,824 KB
testcase_07 AC 45 ms
60,112 KB
testcase_08 AC 48 ms
61,248 KB
testcase_09 AC 49 ms
61,224 KB
testcase_10 AC 46 ms
59,908 KB
testcase_11 AC 48 ms
60,680 KB
testcase_12 AC 47 ms
60,868 KB
testcase_13 AC 48 ms
60,440 KB
testcase_14 AC 46 ms
59,812 KB
testcase_15 AC 48 ms
60,472 KB
testcase_16 AC 48 ms
61,064 KB
testcase_17 AC 556 ms
72,504 KB
testcase_18 AC 514 ms
70,780 KB
testcase_19 AC 498 ms
69,104 KB
testcase_20 AC 461 ms
71,028 KB
testcase_21 AC 451 ms
67,964 KB
testcase_22 AC 46 ms
60,880 KB
testcase_23 AC 45 ms
59,804 KB
testcase_24 AC 1,043 ms
83,628 KB
testcase_25 AC 1,027 ms
73,708 KB
testcase_26 AC 565 ms
72,412 KB
testcase_27 AC 560 ms
69,816 KB
testcase_28 AC 524 ms
70,796 KB
testcase_29 AC 520 ms
68,540 KB
testcase_30 AC 63 ms
62,612 KB
testcase_31 AC 139 ms
64,628 KB
testcase_32 AC 284 ms
65,912 KB
testcase_33 AC 45 ms
59,292 KB
testcase_34 AC 374 ms
67,768 KB
testcase_35 AC 76 ms
62,720 KB
testcase_36 AC 54 ms
63,640 KB
testcase_37 AC 67 ms
63,160 KB
testcase_38 AC 486 ms
68,468 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, k = map(int, input().split())
a = list(map(int, input().split()))
mod = 10 ** 9 + 7


sum_a = sum(a)
dp = [[0] * (sum_a + 1) for i in range(n + 1)]
dp[0][0] = 1


for aa in a:
    for i in range(n)[::-1]:
        for j in range(sum_a + 1)[::-1]:
            if j - aa < 0:
                break
            dp[i + 1][j] += dp[i][j - aa]
            dp[i + 1][j] %= mod

ans = 0
for i in range(1, n + 1):
    ans += sum(dp[i][k * i:])
    ans %= mod
print(ans)
0