結果

問題 No.1238 選抜クラス
ユーザー ntudantuda
提出日時 2024-12-04 19:49:54
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 464 bytes
コンパイル時間 322 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 364,696 KB
最終ジャッジ日時 2024-12-04 19:50:34
合計ジャッジ時間 39,621 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
58,496 KB
testcase_01 AC 44 ms
342,560 KB
testcase_02 AC 45 ms
59,520 KB
testcase_03 AC 44 ms
346,176 KB
testcase_04 AC 44 ms
58,368 KB
testcase_05 AC 44 ms
349,104 KB
testcase_06 AC 43 ms
58,496 KB
testcase_07 AC 45 ms
347,824 KB
testcase_08 AC 44 ms
59,392 KB
testcase_09 AC 90 ms
364,696 KB
testcase_10 AC 43 ms
59,136 KB
testcase_11 AC 78 ms
78,464 KB
testcase_12 AC 47 ms
59,904 KB
testcase_13 AC 52 ms
346,348 KB
testcase_14 AC 46 ms
59,520 KB
testcase_15 AC 92 ms
77,184 KB
testcase_16 AC 85 ms
79,360 KB
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 AC 60 ms
65,664 KB
testcase_23 AC 64 ms
65,408 KB
testcase_24 AC 60 ms
65,664 KB
testcase_25 AC 61 ms
65,920 KB
testcase_26 TLE -
testcase_27 TLE -
testcase_28 TLE -
testcase_29 TLE -
testcase_30 AC 155 ms
83,216 KB
testcase_31 AC 790 ms
138,556 KB
testcase_32 TLE -
testcase_33 AC 44 ms
53,632 KB
testcase_34 TLE -
testcase_35 AC 264 ms
97,956 KB
testcase_36 AC 92 ms
76,928 KB
testcase_37 AC 184 ms
90,416 KB
testcase_38 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

MOD = 10 ** 9 + 7
N, K = map(int, input().split())
A = list(map(int,input().split()))
from collections import defaultdict
dic = defaultdict(int)
dic[(0,0)] = 1
for a in A:
    dic2 = defaultdict(int)
    for (x,y),v in dic.items():
        dic2[(x,y)] += v
        dic2[(x,y)] %= MOD
        dic2[(x+1,y+a)] += v
        dic2[(x+1,y+a)] %= MOD
    dic = dic2
ans = 0
for (x,y),v in dic.items():
    if y >= K * x:
        ans += v
        ans %= MOD
print(ans - 1)
0