結果

問題 No.1736 Princess vs. Dragoness
ユーザー 👑 KazunKazun
提出日時 2021-11-12 21:38:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 71 ms / 2,000 ms
コード長 297 bytes
コンパイル時間 149 ms
コンパイル使用メモリ 82,340 KB
実行使用メモリ 76,760 KB
最終ジャッジ日時 2024-05-04 07:44:50
合計ジャッジ時間 2,789 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,744 KB
testcase_01 AC 36 ms
53,104 KB
testcase_02 AC 36 ms
54,068 KB
testcase_03 AC 41 ms
61,188 KB
testcase_04 AC 49 ms
64,608 KB
testcase_05 AC 35 ms
54,388 KB
testcase_06 AC 51 ms
67,056 KB
testcase_07 AC 66 ms
74,548 KB
testcase_08 AC 56 ms
69,112 KB
testcase_09 AC 60 ms
72,296 KB
testcase_10 AC 35 ms
53,004 KB
testcase_11 AC 71 ms
76,760 KB
testcase_12 AC 48 ms
65,040 KB
testcase_13 AC 54 ms
68,216 KB
testcase_14 AC 52 ms
66,380 KB
testcase_15 AC 44 ms
62,224 KB
testcase_16 AC 51 ms
66,084 KB
testcase_17 AC 54 ms
66,652 KB
testcase_18 AC 46 ms
63,756 KB
testcase_19 AC 48 ms
63,884 KB
testcase_20 AC 44 ms
61,508 KB
testcase_21 AC 55 ms
68,532 KB
testcase_22 AC 59 ms
69,812 KB
testcase_23 AC 54 ms
67,812 KB
testcase_24 AC 35 ms
53,088 KB
testcase_25 AC 55 ms
68,872 KB
testcase_26 AC 56 ms
72,008 KB
testcase_27 AC 56 ms
71,100 KB
testcase_28 AC 48 ms
65,012 KB
testcase_29 AC 43 ms
62,140 KB
testcase_30 AC 50 ms
65,184 KB
testcase_31 AC 64 ms
73,624 KB
testcase_32 AC 63 ms
75,268 KB
testcase_33 AC 35 ms
52,660 KB
testcase_34 AC 35 ms
53,832 KB
testcase_35 AC 34 ms
53,080 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import heapify,heappop,heappush

N,A,B,X,Y=map(int,input().split())
H=list(map(int,input().split()))

H=[-hp for hp in H]
heapify(H)

for _ in range(A):
    if not H:
        continue

    hp=-heappop(H)
    if hp>=X:
        heappush(H,-(hp-X))

print("Yes" if -sum(H)<=B*Y else "No")
0