結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,608 KB
testcase_01 AC 37 ms
52,480 KB
testcase_02 AC 37 ms
52,992 KB
testcase_03 AC 52 ms
59,660 KB
testcase_04 AC 62 ms
66,304 KB
testcase_05 AC 50 ms
61,696 KB
testcase_06 AC 63 ms
66,944 KB
testcase_07 AC 91 ms
76,432 KB
testcase_08 AC 68 ms
69,296 KB
testcase_09 AC 83 ms
75,008 KB
testcase_10 AC 50 ms
60,800 KB
testcase_11 AC 89 ms
76,544 KB
testcase_12 AC 55 ms
64,384 KB
testcase_13 AC 68 ms
68,096 KB
testcase_14 AC 62 ms
67,584 KB
testcase_15 AC 54 ms
62,592 KB
testcase_16 AC 59 ms
65,792 KB
testcase_17 AC 61 ms
67,328 KB
testcase_18 AC 55 ms
64,156 KB
testcase_19 AC 53 ms
64,000 KB
testcase_20 AC 46 ms
60,444 KB
testcase_21 AC 68 ms
69,632 KB
testcase_22 AC 80 ms
72,172 KB
testcase_23 AC 68 ms
67,584 KB
testcase_24 AC 38 ms
53,248 KB
testcase_25 AC 68 ms
69,760 KB
testcase_26 AC 74 ms
71,552 KB
testcase_27 AC 76 ms
70,272 KB
testcase_28 AC 60 ms
64,640 KB
testcase_29 AC 49 ms
62,080 KB
testcase_30 AC 57 ms
66,048 KB
testcase_31 AC 75 ms
73,472 KB
testcase_32 AC 76 ms
74,440 KB
testcase_33 AC 38 ms
52,224 KB
testcase_34 AC 36 ms
52,608 KB
testcase_35 AC 36 ms
52,352 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