結果

問題 No.1736 Princess vs. Dragoness
ユーザー KazunKazun
提出日時 2021-11-12 21:38:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 82 ms / 2,000 ms
コード長 297 bytes
コンパイル時間 219 ms
コンパイル使用メモリ 82,160 KB
実行使用メモリ 76,748 KB
最終ジャッジ日時 2024-11-25 17:29:40
合計ジャッジ時間 3,143 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
54,172 KB
testcase_01 AC 39 ms
52,224 KB
testcase_02 AC 38 ms
52,224 KB
testcase_03 AC 45 ms
59,520 KB
testcase_04 AC 56 ms
65,036 KB
testcase_05 AC 43 ms
52,956 KB
testcase_06 AC 64 ms
66,816 KB
testcase_07 AC 82 ms
74,472 KB
testcase_08 AC 61 ms
68,460 KB
testcase_09 AC 67 ms
71,680 KB
testcase_10 AC 43 ms
52,608 KB
testcase_11 AC 77 ms
76,748 KB
testcase_12 AC 53 ms
64,128 KB
testcase_13 AC 63 ms
67,200 KB
testcase_14 AC 55 ms
66,048 KB
testcase_15 AC 45 ms
61,568 KB
testcase_16 AC 54 ms
65,536 KB
testcase_17 AC 57 ms
66,304 KB
testcase_18 AC 49 ms
63,360 KB
testcase_19 AC 50 ms
64,128 KB
testcase_20 AC 42 ms
60,032 KB
testcase_21 AC 57 ms
68,204 KB
testcase_22 AC 60 ms
70,400 KB
testcase_23 AC 54 ms
67,348 KB
testcase_24 AC 39 ms
52,864 KB
testcase_25 AC 58 ms
69,504 KB
testcase_26 AC 61 ms
71,296 KB
testcase_27 AC 62 ms
69,504 KB
testcase_28 AC 52 ms
63,872 KB
testcase_29 AC 47 ms
61,824 KB
testcase_30 AC 54 ms
65,408 KB
testcase_31 AC 71 ms
73,088 KB
testcase_32 AC 70 ms
73,984 KB
testcase_33 AC 37 ms
52,224 KB
testcase_34 AC 38 ms
52,224 KB
testcase_35 AC 39 ms
52,096 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