結果

問題 No.1238 選抜クラス
ユーザー ntudantuda
提出日時 2024-12-04 22:31:52
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,053 ms / 2,000 ms
コード長 542 bytes
コンパイル時間 309 ms
コンパイル使用メモリ 82,396 KB
実行使用メモリ 131,168 KB
最終ジャッジ日時 2024-12-04 22:31:59
合計ジャッジ時間 6,291 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
53,632 KB
testcase_01 AC 45 ms
53,504 KB
testcase_02 AC 43 ms
53,504 KB
testcase_03 AC 43 ms
53,632 KB
testcase_04 AC 43 ms
54,016 KB
testcase_05 AC 44 ms
53,888 KB
testcase_06 AC 43 ms
53,632 KB
testcase_07 AC 44 ms
54,144 KB
testcase_08 AC 44 ms
53,632 KB
testcase_09 AC 43 ms
54,144 KB
testcase_10 AC 43 ms
53,376 KB
testcase_11 AC 44 ms
53,632 KB
testcase_12 AC 44 ms
54,144 KB
testcase_13 AC 45 ms
54,016 KB
testcase_14 AC 45 ms
53,632 KB
testcase_15 AC 59 ms
64,640 KB
testcase_16 AC 51 ms
53,888 KB
testcase_17 AC 91 ms
76,544 KB
testcase_18 AC 1,053 ms
131,168 KB
testcase_19 AC 46 ms
53,632 KB
testcase_20 AC 62 ms
67,584 KB
testcase_21 AC 101 ms
77,172 KB
testcase_22 AC 46 ms
54,144 KB
testcase_23 AC 45 ms
53,888 KB
testcase_24 AC 44 ms
53,760 KB
testcase_25 AC 45 ms
53,504 KB
testcase_26 AC 44 ms
53,504 KB
testcase_27 AC 45 ms
53,632 KB
testcase_28 AC 474 ms
97,636 KB
testcase_29 AC 500 ms
99,016 KB
testcase_30 AC 95 ms
77,296 KB
testcase_31 AC 119 ms
77,412 KB
testcase_32 AC 64 ms
67,200 KB
testcase_33 AC 44 ms
54,144 KB
testcase_34 AC 469 ms
89,848 KB
testcase_35 AC 115 ms
78,480 KB
testcase_36 AC 45 ms
53,760 KB
testcase_37 AC 50 ms
61,056 KB
testcase_38 AC 283 ms
85,232 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
        elif y + a + 100 * (N - i - 1) < K * (x + N - i):
            continue
        else:
            dic[(x + 1, y + a)] += v
            dic[(x + 1, y + a)] %= MOD
print(ans)
0