結果

問題 No.1736 Princess vs. Dragoness
ユーザー mrngmrng
提出日時 2021-11-18 18:32:37
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 78 ms / 2,000 ms
コード長 262 bytes
コンパイル時間 158 ms
コンパイル使用メモリ 82,396 KB
実行使用メモリ 76,580 KB
最終ジャッジ日時 2024-06-08 02:10:50
合計ジャッジ時間 3,254 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,480 KB
testcase_01 AC 40 ms
52,480 KB
testcase_02 AC 38 ms
52,224 KB
testcase_03 AC 46 ms
59,904 KB
testcase_04 AC 58 ms
66,560 KB
testcase_05 AC 45 ms
59,136 KB
testcase_06 AC 67 ms
71,424 KB
testcase_07 AC 70 ms
74,368 KB
testcase_08 AC 64 ms
71,332 KB
testcase_09 AC 78 ms
76,032 KB
testcase_10 AC 44 ms
60,032 KB
testcase_11 AC 78 ms
75,776 KB
testcase_12 AC 56 ms
67,260 KB
testcase_13 AC 60 ms
68,864 KB
testcase_14 AC 58 ms
68,224 KB
testcase_15 AC 45 ms
60,800 KB
testcase_16 AC 60 ms
67,200 KB
testcase_17 AC 62 ms
70,016 KB
testcase_18 AC 55 ms
66,944 KB
testcase_19 AC 54 ms
66,176 KB
testcase_20 AC 44 ms
59,648 KB
testcase_21 AC 67 ms
72,576 KB
testcase_22 AC 75 ms
75,260 KB
testcase_23 AC 55 ms
66,048 KB
testcase_24 AC 40 ms
52,224 KB
testcase_25 AC 77 ms
72,576 KB
testcase_26 AC 70 ms
73,472 KB
testcase_27 AC 63 ms
68,736 KB
testcase_28 AC 57 ms
66,048 KB
testcase_29 AC 52 ms
64,224 KB
testcase_30 AC 60 ms
67,584 KB
testcase_31 AC 70 ms
74,112 KB
testcase_32 AC 75 ms
76,580 KB
testcase_33 AC 39 ms
52,480 KB
testcase_34 AC 38 ms
52,736 KB
testcase_35 AC 37 ms
52,608 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,a,b,x,y = map(int,input().split())
h = list(map(int,input().split()))
from heapq import heappush, heappop
hq = []
for i in h:
	heappush(hq,-i)
for i in range(a):
	t = heappop(hq)
	t = min(0,t+x)
	heappush(hq,t)
if -sum(hq)<=b*y: print('Yes')
else: print('No')
0