結果

問題 No.1736 Princess vs. Dragoness
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2021-11-12 21:39:15
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 328 bytes
コンパイル時間 143 ms
コンパイル使用メモリ 82,448 KB
実行使用メモリ 77,640 KB
最終ジャッジ日時 2024-11-25 17:31:36
合計ジャッジ時間 3,157 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,792 KB
testcase_01 AC 38 ms
52,996 KB
testcase_02 AC 38 ms
52,896 KB
testcase_03 AC 46 ms
60,636 KB
testcase_04 AC 59 ms
67,880 KB
testcase_05 RE -
testcase_06 AC 65 ms
72,736 KB
testcase_07 AC 65 ms
73,492 KB
testcase_08 AC 61 ms
70,612 KB
testcase_09 AC 66 ms
72,636 KB
testcase_10 RE -
testcase_11 AC 78 ms
76,768 KB
testcase_12 AC 55 ms
66,872 KB
testcase_13 AC 60 ms
70,212 KB
testcase_14 AC 57 ms
68,784 KB
testcase_15 AC 47 ms
62,052 KB
testcase_16 AC 55 ms
69,072 KB
testcase_17 AC 63 ms
70,928 KB
testcase_18 AC 56 ms
67,384 KB
testcase_19 AC 59 ms
67,608 KB
testcase_20 AC 47 ms
59,748 KB
testcase_21 AC 70 ms
72,648 KB
testcase_22 AC 71 ms
72,908 KB
testcase_23 AC 59 ms
67,004 KB
testcase_24 AC 40 ms
53,032 KB
testcase_25 RE -
testcase_26 AC 70 ms
73,588 KB
testcase_27 AC 63 ms
69,504 KB
testcase_28 AC 54 ms
65,980 KB
testcase_29 AC 50 ms
65,072 KB
testcase_30 AC 57 ms
69,832 KB
testcase_31 AC 69 ms
74,344 KB
testcase_32 AC 71 ms
76,220 KB
testcase_33 AC 37 ms
53,668 KB
testcase_34 AC 35 ms
53,448 KB
testcase_35 AC 35 ms
54,112 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import heappop,heappush
n,a,b,x,y = map(int,input().split())
H = list(map(int,input().split()))

h = []
for i in H:
    heappush(h,-i)

for i in range(a):
    num = -heappop(h)
    num -= x
    if num <= 0:
        continue
    heappush(h,-num)

count = -sum(h)
if count <= b*y:
    print("Yes")
else:
    print("No")
0