結果

問題 No.1739 Princess vs. Dragoness (& AoE)
ユーザー hir355hir355
提出日時 2021-11-12 21:57:20
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 563 bytes
コンパイル時間 164 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 202,948 KB
最終ジャッジ日時 2024-05-04 08:32:57
合計ジャッジ時間 10,175 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
52,608 KB
testcase_01 AC 45 ms
52,608 KB
testcase_02 AC 44 ms
52,608 KB
testcase_03 WA -
testcase_04 AC 340 ms
190,316 KB
testcase_05 AC 344 ms
196,560 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 195 ms
131,256 KB
testcase_09 AC 272 ms
191,124 KB
testcase_10 AC 201 ms
107,116 KB
testcase_11 WA -
testcase_12 AC 112 ms
76,376 KB
testcase_13 WA -
testcase_14 AC 271 ms
153,236 KB
testcase_15 AC 311 ms
178,536 KB
testcase_16 AC 199 ms
95,860 KB
testcase_17 AC 207 ms
118,524 KB
testcase_18 AC 243 ms
123,036 KB
testcase_19 AC 194 ms
120,144 KB
testcase_20 WA -
testcase_21 AC 268 ms
169,408 KB
testcase_22 AC 290 ms
176,244 KB
testcase_23 AC 351 ms
202,720 KB
testcase_24 AC 330 ms
178,380 KB
testcase_25 AC 346 ms
185,152 KB
testcase_26 WA -
testcase_27 AC 347 ms
190,560 KB
testcase_28 WA -
testcase_29 AC 331 ms
171,464 KB
testcase_30 AC 350 ms
202,948 KB
testcase_31 WA -
testcase_32 WA -
testcase_33 AC 51 ms
60,284 KB
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 AC 58 ms
62,848 KB
testcase_39 AC 71 ms
68,224 KB
testcase_40 AC 57 ms
61,824 KB
testcase_41 AC 59 ms
63,488 KB
testcase_42 AC 55 ms
61,568 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 = 0, 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