結果

問題 No.1739 Princess vs. Dragoness (& AoE)
ユーザー hir355hir355
提出日時 2021-11-12 21:57:46
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 305 ms / 3,000 ms
コード長 564 bytes
コンパイル時間 204 ms
コンパイル使用メモリ 82,024 KB
実行使用メモリ 202,744 KB
最終ジャッジ日時 2024-11-25 18:23:59
合計ジャッジ時間 8,900 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,736 KB
testcase_01 AC 37 ms
52,944 KB
testcase_02 AC 37 ms
52,736 KB
testcase_03 AC 42 ms
59,544 KB
testcase_04 AC 294 ms
190,564 KB
testcase_05 AC 289 ms
196,616 KB
testcase_06 AC 232 ms
175,788 KB
testcase_07 AC 42 ms
60,160 KB
testcase_08 AC 165 ms
131,092 KB
testcase_09 AC 230 ms
190,840 KB
testcase_10 AC 166 ms
107,008 KB
testcase_11 AC 143 ms
100,932 KB
testcase_12 AC 93 ms
76,472 KB
testcase_13 AC 222 ms
154,244 KB
testcase_14 AC 239 ms
153,584 KB
testcase_15 AC 271 ms
178,456 KB
testcase_16 AC 169 ms
95,348 KB
testcase_17 AC 176 ms
118,408 KB
testcase_18 AC 205 ms
123,756 KB
testcase_19 AC 164 ms
120,152 KB
testcase_20 AC 117 ms
87,516 KB
testcase_21 AC 242 ms
169,468 KB
testcase_22 AC 258 ms
175,552 KB
testcase_23 AC 301 ms
202,520 KB
testcase_24 AC 282 ms
178,252 KB
testcase_25 AC 305 ms
184,212 KB
testcase_26 AC 284 ms
178,492 KB
testcase_27 AC 298 ms
190,676 KB
testcase_28 AC 285 ms
172,836 KB
testcase_29 AC 288 ms
171,784 KB
testcase_30 AC 304 ms
202,744 KB
testcase_31 AC 295 ms
184,540 KB
testcase_32 AC 292 ms
196,740 KB
testcase_33 AC 43 ms
60,288 KB
testcase_34 AC 42 ms
59,136 KB
testcase_35 AC 48 ms
62,464 KB
testcase_36 AC 48 ms
62,848 KB
testcase_37 AC 46 ms
62,464 KB
testcase_38 AC 46 ms
63,104 KB
testcase_39 AC 56 ms
68,608 KB
testcase_40 AC 53 ms
62,336 KB
testcase_41 AC 53 ms
63,744 KB
testcase_42 AC 50 ms
61,952 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import heapify, heappush, heappop
n, a, b, x, y = map(int, input().split())
h = list(map(lambda x:-int(x), input().split()))
heapify(h)
for i in range(a):
    xx = -heappop(h)
    xx -= x
    heappush(h, -xx)
h = list(map(lambda x:-x, h))
l, r = -1, 1000000000
while r - l > 1:
    m = (l + r) // 2
    hh = list(map(lambda x:x-m, h))
    t = b * y
    for i in range(n):
        d = max(0, min(hh[i], t))
        hh[i] -= d
        t -= d
    for i in range(n):
        if hh[i] > 0:
            l = m
            break
    else:
        r = m
print(r)
0