結果

問題 No.1736 Princess vs. Dragoness
ユーザー mrngmrng
提出日時 2021-11-18 18:26:46
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 254 bytes
コンパイル時間 542 ms
コンパイル使用メモリ 82,232 KB
実行使用メモリ 76,416 KB
最終ジャッジ日時 2024-06-08 02:01:55
合計ジャッジ時間 3,661 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
53,568 KB
testcase_01 AC 35 ms
53,500 KB
testcase_02 AC 37 ms
53,460 KB
testcase_03 WA -
testcase_04 AC 55 ms
67,128 KB
testcase_05 AC 46 ms
62,080 KB
testcase_06 AC 65 ms
71,808 KB
testcase_07 AC 67 ms
75,192 KB
testcase_08 AC 64 ms
71,040 KB
testcase_09 AC 74 ms
76,416 KB
testcase_10 AC 45 ms
60,416 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 60 ms
68,992 KB
testcase_14 WA -
testcase_15 AC 47 ms
61,824 KB
testcase_16 AC 61 ms
67,072 KB
testcase_17 WA -
testcase_18 AC 57 ms
67,328 KB
testcase_19 AC 54 ms
66,176 KB
testcase_20 AC 43 ms
59,392 KB
testcase_21 WA -
testcase_22 AC 69 ms
74,880 KB
testcase_23 AC 53 ms
66,432 KB
testcase_24 AC 36 ms
52,916 KB
testcase_25 AC 65 ms
71,936 KB
testcase_26 AC 63 ms
73,728 KB
testcase_27 AC 57 ms
68,864 KB
testcase_28 AC 58 ms
66,048 KB
testcase_29 AC 51 ms
64,128 KB
testcase_30 AC 57 ms
68,736 KB
testcase_31 AC 67 ms
73,600 KB
testcase_32 AC 75 ms
76,160 KB
testcase_33 WA -
testcase_34 WA -
testcase_35 AC 36 ms
52,352 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 += x
	heappush(hq,t)
if -sum(hq)<=b*y: print('Yes')
else: print('No')
0