結果

問題 No.1736 Princess vs. Dragoness
ユーザー kohei2019kohei2019
提出日時 2023-06-11 23:53:07
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 91 ms / 2,000 ms
コード長 348 bytes
コンパイル時間 453 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 76,924 KB
最終ジャッジ日時 2025-01-03 05:42:04
合計ジャッジ時間 4,262 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
52,224 KB
testcase_01 AC 41 ms
52,608 KB
testcase_02 AC 40 ms
52,224 KB
testcase_03 AC 51 ms
59,776 KB
testcase_04 AC 64 ms
65,792 KB
testcase_05 AC 54 ms
61,184 KB
testcase_06 AC 68 ms
66,816 KB
testcase_07 AC 90 ms
76,924 KB
testcase_08 AC 74 ms
69,888 KB
testcase_09 AC 81 ms
75,008 KB
testcase_10 AC 53 ms
61,056 KB
testcase_11 AC 91 ms
76,672 KB
testcase_12 AC 62 ms
64,640 KB
testcase_13 AC 66 ms
67,840 KB
testcase_14 AC 69 ms
67,584 KB
testcase_15 AC 54 ms
61,952 KB
testcase_16 AC 62 ms
65,536 KB
testcase_17 AC 66 ms
67,968 KB
testcase_18 AC 59 ms
63,744 KB
testcase_19 AC 60 ms
64,000 KB
testcase_20 AC 48 ms
60,160 KB
testcase_21 AC 72 ms
69,248 KB
testcase_22 AC 81 ms
71,936 KB
testcase_23 AC 69 ms
67,712 KB
testcase_24 AC 43 ms
52,736 KB
testcase_25 AC 71 ms
69,632 KB
testcase_26 AC 75 ms
71,424 KB
testcase_27 AC 72 ms
69,760 KB
testcase_28 AC 60 ms
64,384 KB
testcase_29 AC 53 ms
62,080 KB
testcase_30 AC 65 ms
65,664 KB
testcase_31 AC 77 ms
73,216 KB
testcase_32 AC 81 ms
74,112 KB
testcase_33 AC 39 ms
52,096 KB
testcase_34 AC 42 ms
52,096 KB
testcase_35 AC 41 ms
52,480 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import heapq
N,A,B,X,Y = map(int,input().split())
lsH = list(map(lambda x:-int(x),input().split()))
heapq.heapify(lsH)

for i in range(A):
    hp = heapq.heappop(lsH)
    v = hp + X
    heapq.heappush(lsH, v)

vsum = 0
for j in lsH:
    if j >= 0:
        continue
    else:
        vsum -= j

if vsum > B*Y:
    print('No')
else:
    print('Yes')
0