結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,068 KB
testcase_01 AC 37 ms
53,224 KB
testcase_02 AC 37 ms
53,496 KB
testcase_03 AC 45 ms
60,976 KB
testcase_04 AC 56 ms
67,356 KB
testcase_05 RE -
testcase_06 AC 65 ms
73,540 KB
testcase_07 AC 67 ms
74,368 KB
testcase_08 AC 63 ms
70,440 KB
testcase_09 AC 67 ms
73,364 KB
testcase_10 RE -
testcase_11 AC 73 ms
76,720 KB
testcase_12 AC 55 ms
67,792 KB
testcase_13 AC 58 ms
69,948 KB
testcase_14 AC 62 ms
68,916 KB
testcase_15 AC 48 ms
61,996 KB
testcase_16 AC 62 ms
68,184 KB
testcase_17 AC 64 ms
70,636 KB
testcase_18 AC 57 ms
68,068 KB
testcase_19 AC 55 ms
66,000 KB
testcase_20 AC 45 ms
59,432 KB
testcase_21 AC 69 ms
73,020 KB
testcase_22 AC 67 ms
73,724 KB
testcase_23 AC 54 ms
66,076 KB
testcase_24 AC 36 ms
53,416 KB
testcase_25 RE -
testcase_26 AC 66 ms
74,348 KB
testcase_27 AC 63 ms
69,336 KB
testcase_28 AC 56 ms
66,496 KB
testcase_29 AC 52 ms
64,944 KB
testcase_30 AC 58 ms
68,516 KB
testcase_31 AC 68 ms
74,568 KB
testcase_32 AC 72 ms
76,772 KB
testcase_33 AC 38 ms
52,768 KB
testcase_34 AC 34 ms
52,684 KB
testcase_35 AC 36 ms
54,200 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