結果

問題 No.1739 Princess vs. Dragoness (& AoE)
ユーザー hir355hir355
提出日時 2021-11-12 21:57:46
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 324 ms / 3,000 ms
コード長 564 bytes
コンパイル時間 139 ms
コンパイル使用メモリ 81,976 KB
実行使用メモリ 202,880 KB
最終ジャッジ日時 2024-05-04 08:34:32
合計ジャッジ時間 9,131 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
53,120 KB
testcase_01 AC 38 ms
52,992 KB
testcase_02 AC 45 ms
52,480 KB
testcase_03 AC 51 ms
59,676 KB
testcase_04 AC 311 ms
190,312 KB
testcase_05 AC 308 ms
196,740 KB
testcase_06 AC 236 ms
175,712 KB
testcase_07 AC 44 ms
59,648 KB
testcase_08 AC 183 ms
131,232 KB
testcase_09 AC 249 ms
190,960 KB
testcase_10 AC 181 ms
107,692 KB
testcase_11 AC 150 ms
100,356 KB
testcase_12 AC 95 ms
76,520 KB
testcase_13 AC 224 ms
154,036 KB
testcase_14 AC 243 ms
153,168 KB
testcase_15 AC 276 ms
177,860 KB
testcase_16 AC 175 ms
95,348 KB
testcase_17 AC 183 ms
118,456 KB
testcase_18 AC 210 ms
123,424 KB
testcase_19 AC 173 ms
120,156 KB
testcase_20 AC 123 ms
88,064 KB
testcase_21 AC 239 ms
169,408 KB
testcase_22 AC 276 ms
175,724 KB
testcase_23 AC 314 ms
202,720 KB
testcase_24 AC 290 ms
178,256 KB
testcase_25 AC 304 ms
184,456 KB
testcase_26 AC 287 ms
178,744 KB
testcase_27 AC 307 ms
190,296 KB
testcase_28 AC 298 ms
172,568 KB
testcase_29 AC 292 ms
171,544 KB
testcase_30 AC 324 ms
202,880 KB
testcase_31 AC 303 ms
184,800 KB
testcase_32 AC 295 ms
196,812 KB
testcase_33 AC 45 ms
60,160 KB
testcase_34 AC 44 ms
59,136 KB
testcase_35 AC 51 ms
62,080 KB
testcase_36 AC 49 ms
61,952 KB
testcase_37 AC 49 ms
61,824 KB
testcase_38 AC 49 ms
63,488 KB
testcase_39 AC 56 ms
68,480 KB
testcase_40 AC 44 ms
62,464 KB
testcase_41 AC 48 ms
63,360 KB
testcase_42 AC 49 ms
61,824 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