結果

問題 No.1238 選抜クラス
ユーザー ntudantuda
提出日時 2024-12-04 22:23:27
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 463 bytes
コンパイル時間 419 ms
コンパイル使用メモリ 82,308 KB
実行使用メモリ 209,148 KB
最終ジャッジ日時 2024-12-04 22:23:46
合計ジャッジ時間 18,885 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
53,376 KB
testcase_01 AC 44 ms
53,504 KB
testcase_02 AC 44 ms
53,632 KB
testcase_03 AC 43 ms
53,120 KB
testcase_04 AC 43 ms
53,120 KB
testcase_05 AC 45 ms
53,888 KB
testcase_06 AC 44 ms
53,372 KB
testcase_07 AC 46 ms
53,632 KB
testcase_08 AC 45 ms
53,888 KB
testcase_09 AC 45 ms
53,120 KB
testcase_10 AC 44 ms
53,228 KB
testcase_11 AC 44 ms
53,632 KB
testcase_12 AC 43 ms
53,888 KB
testcase_13 AC 47 ms
53,376 KB
testcase_14 AC 47 ms
53,760 KB
testcase_15 AC 67 ms
66,560 KB
testcase_16 AC 49 ms
53,632 KB
testcase_17 AC 94 ms
76,544 KB
testcase_18 AC 1,699 ms
148,852 KB
testcase_19 TLE -
testcase_20 AC 65 ms
67,072 KB
testcase_21 AC 1,738 ms
174,436 KB
testcase_22 AC 44 ms
53,376 KB
testcase_23 AC 60 ms
65,280 KB
testcase_24 AC 45 ms
53,504 KB
testcase_25 AC 44 ms
53,376 KB
testcase_26 AC 44 ms
53,504 KB
testcase_27 TLE -
testcase_28 TLE -
testcase_29 TLE -
testcase_30 AC 103 ms
77,856 KB
testcase_31 AC 117 ms
77,312 KB
testcase_32 AC 1,037 ms
124,756 KB
testcase_33 AC 44 ms
53,248 KB
testcase_34 AC 535 ms
90,716 KB
testcase_35 AC 140 ms
79,764 KB
testcase_36 AC 45 ms
53,376 KB
testcase_37 AC 50 ms
60,672 KB
testcase_38 AC 1,792 ms
168,440 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict

MOD = 10 ** 9 + 7
N, K = map(int, input().split())
A = list(map(int, input().split()))
A.sort()
dic = defaultdict(int)
dic[(0, 0)] = 1
ans = 0
for i, a in enumerate(A):
    tmp = pow(2, N - i - 1, MOD)
    for (x, y), v in list(dic.items()):
        if y + a >= K * (x + 1):
            ans += v * tmp
            ans %= MOD
        else:
            dic[(x + 1, y + a)] += v
            dic[(x + 1, y + a)] %= MOD
print(ans)
0