結果

問題 No.1238 選抜クラス
ユーザー H20H20
提出日時 2022-01-07 10:07:03
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 389 ms / 2,000 ms
コード長 410 bytes
コンパイル時間 317 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 96,256 KB
最終ジャッジ日時 2024-11-08 19:48:04
合計ジャッジ時間 7,120 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
53,376 KB
testcase_01 AC 46 ms
53,504 KB
testcase_02 AC 45 ms
54,144 KB
testcase_03 AC 45 ms
53,504 KB
testcase_04 AC 43 ms
53,632 KB
testcase_05 AC 43 ms
53,632 KB
testcase_06 AC 44 ms
53,504 KB
testcase_07 AC 45 ms
53,760 KB
testcase_08 AC 45 ms
53,888 KB
testcase_09 AC 58 ms
63,232 KB
testcase_10 AC 44 ms
53,632 KB
testcase_11 AC 56 ms
62,848 KB
testcase_12 AC 46 ms
54,528 KB
testcase_13 AC 46 ms
54,272 KB
testcase_14 AC 45 ms
54,144 KB
testcase_15 AC 59 ms
64,000 KB
testcase_16 AC 58 ms
63,488 KB
testcase_17 AC 323 ms
96,256 KB
testcase_18 AC 325 ms
96,000 KB
testcase_19 AC 389 ms
95,232 KB
testcase_20 AC 331 ms
90,112 KB
testcase_21 AC 277 ms
88,960 KB
testcase_22 AC 56 ms
62,592 KB
testcase_23 AC 57 ms
62,464 KB
testcase_24 AC 55 ms
62,464 KB
testcase_25 AC 54 ms
62,848 KB
testcase_26 AC 305 ms
92,800 KB
testcase_27 AC 308 ms
92,672 KB
testcase_28 AC 321 ms
94,336 KB
testcase_29 AC 347 ms
89,600 KB
testcase_30 AC 68 ms
67,712 KB
testcase_31 AC 123 ms
77,568 KB
testcase_32 AC 178 ms
80,256 KB
testcase_33 AC 46 ms
53,504 KB
testcase_34 AC 266 ms
84,608 KB
testcase_35 AC 81 ms
71,552 KB
testcase_36 AC 59 ms
63,744 KB
testcase_37 AC 70 ms
68,736 KB
testcase_38 AC 272 ms
89,472 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import collections
N,K = map(int,input().split())
A = list(map(int,input().split()))
mod = 10**9+7
DP = [collections.defaultdict(int) for _ in range(N+1)]
DP[0][0]=1
for a in A:
    for i in reversed(range(N)):
        for k,v in DP[i].items():
            DP[i+1][k+a] = (DP[i+1][k+a]+v) % mod
ans = 0
for i in range(1,N+1):
    for k,v in DP[i].items():
        if k>=K*i:
            ans+=v
print(ans%mod)

0