結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,696 KB
testcase_01 AC 35 ms
52,968 KB
testcase_02 AC 38 ms
53,440 KB
testcase_03 AC 47 ms
61,552 KB
testcase_04 AC 56 ms
67,560 KB
testcase_05 AC 38 ms
53,112 KB
testcase_06 AC 65 ms
72,600 KB
testcase_07 AC 65 ms
74,112 KB
testcase_08 AC 59 ms
70,744 KB
testcase_09 AC 67 ms
73,044 KB
testcase_10 AC 36 ms
53,208 KB
testcase_11 AC 77 ms
76,392 KB
testcase_12 AC 56 ms
67,184 KB
testcase_13 AC 59 ms
69,796 KB
testcase_14 AC 62 ms
69,748 KB
testcase_15 AC 48 ms
61,560 KB
testcase_16 AC 55 ms
68,276 KB
testcase_17 AC 59 ms
71,576 KB
testcase_18 AC 55 ms
67,656 KB
testcase_19 AC 54 ms
66,864 KB
testcase_20 AC 42 ms
60,352 KB
testcase_21 AC 64 ms
71,912 KB
testcase_22 AC 64 ms
72,288 KB
testcase_23 AC 54 ms
67,160 KB
testcase_24 AC 37 ms
53,964 KB
testcase_25 AC 66 ms
69,764 KB
testcase_26 AC 67 ms
74,868 KB
testcase_27 AC 61 ms
68,896 KB
testcase_28 AC 58 ms
67,124 KB
testcase_29 AC 54 ms
65,040 KB
testcase_30 AC 63 ms
69,132 KB
testcase_31 AC 74 ms
73,940 KB
testcase_32 AC 76 ms
76,516 KB
testcase_33 AC 38 ms
53,080 KB
testcase_34 AC 38 ms
53,080 KB
testcase_35 AC 38 ms
52,900 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):
    if h:
        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