結果

問題 No.1739 Princess vs. Dragoness (& AoE)
ユーザー mrngmrng
提出日時 2021-11-18 20:33:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,062 ms / 3,000 ms
コード長 326 bytes
コンパイル時間 173 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 126,248 KB
最終ジャッジ日時 2024-06-08 09:58:05
合計ジャッジ時間 37,389 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
52,480 KB
testcase_01 AC 42 ms
52,480 KB
testcase_02 AC 40 ms
53,028 KB
testcase_03 AC 57 ms
62,848 KB
testcase_04 AC 1,528 ms
125,264 KB
testcase_05 AC 1,964 ms
125,928 KB
testcase_06 AC 973 ms
106,500 KB
testcase_07 AC 55 ms
62,080 KB
testcase_08 AC 267 ms
98,992 KB
testcase_09 AC 353 ms
116,376 KB
testcase_10 AC 1,015 ms
91,904 KB
testcase_11 AC 668 ms
87,040 KB
testcase_12 AC 76 ms
76,140 KB
testcase_13 AC 1,017 ms
102,776 KB
testcase_14 AC 1,283 ms
108,232 KB
testcase_15 AC 1,030 ms
125,272 KB
testcase_16 AC 1,170 ms
87,296 KB
testcase_17 AC 622 ms
96,272 KB
testcase_18 AC 1,331 ms
96,260 KB
testcase_19 AC 267 ms
91,196 KB
testcase_20 AC 220 ms
82,944 KB
testcase_21 AC 603 ms
114,700 KB
testcase_22 AC 1,022 ms
119,448 KB
testcase_23 AC 1,770 ms
125,520 KB
testcase_24 AC 1,847 ms
125,840 KB
testcase_25 AC 2,055 ms
125,104 KB
testcase_26 AC 1,653 ms
123,588 KB
testcase_27 AC 2,062 ms
126,248 KB
testcase_28 AC 1,659 ms
124,480 KB
testcase_29 AC 2,001 ms
125,692 KB
testcase_30 AC 1,807 ms
125,124 KB
testcase_31 AC 1,676 ms
123,412 KB
testcase_32 AC 1,893 ms
123,652 KB
testcase_33 AC 75 ms
72,960 KB
testcase_34 AC 60 ms
75,392 KB
testcase_35 AC 96 ms
75,648 KB
testcase_36 AC 91 ms
75,776 KB
testcase_37 AC 75 ms
75,648 KB
testcase_38 AC 82 ms
76,104 KB
testcase_39 AC 77 ms
75,648 KB
testcase_40 AC 66 ms
69,248 KB
testcase_41 AC 81 ms
75,648 KB
testcase_42 AC 71 ms
73,472 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,a,b,x,y = map(int,input().split())
h = list(map(int,input().split()))
from heapq import heappush, heappop
ng,ok = -1,10**9
while ok-ng>1:
	k = (ok+ng)//2
	hq = []
	for i in h:
		heappush(hq,min(0,k-i))
	for i in range(a):
		t = heappop(hq)
		t = min(0,t+x)
		heappush(hq,t)
	if -sum(hq)<=b*y: ok = k
	else: ng = k
print(ok)
0