結果

問題 No.1736 Princess vs. Dragoness
ユーザー brthyyjpbrthyyjp
提出日時 2021-11-13 02:27:06
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 90 ms / 2,000 ms
コード長 443 bytes
コンパイル時間 288 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 76,672 KB
最終ジャッジ日時 2024-11-26 08:52:52
合計ジャッジ時間 3,625 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,864 KB
testcase_01 AC 38 ms
52,224 KB
testcase_02 AC 38 ms
52,480 KB
testcase_03 AC 49 ms
62,208 KB
testcase_04 AC 56 ms
65,280 KB
testcase_05 AC 39 ms
52,608 KB
testcase_06 AC 70 ms
73,472 KB
testcase_07 AC 79 ms
76,672 KB
testcase_08 AC 63 ms
69,248 KB
testcase_09 AC 71 ms
73,088 KB
testcase_10 AC 38 ms
52,736 KB
testcase_11 AC 90 ms
76,548 KB
testcase_12 AC 61 ms
68,096 KB
testcase_13 AC 74 ms
75,028 KB
testcase_14 AC 71 ms
73,320 KB
testcase_15 AC 54 ms
64,128 KB
testcase_16 AC 61 ms
66,944 KB
testcase_17 AC 67 ms
71,680 KB
testcase_18 AC 65 ms
69,760 KB
testcase_19 AC 67 ms
70,400 KB
testcase_20 AC 50 ms
62,116 KB
testcase_21 AC 67 ms
70,784 KB
testcase_22 AC 66 ms
70,400 KB
testcase_23 AC 78 ms
76,672 KB
testcase_24 AC 44 ms
58,496 KB
testcase_25 AC 64 ms
68,608 KB
testcase_26 AC 82 ms
76,672 KB
testcase_27 AC 84 ms
76,544 KB
testcase_28 AC 67 ms
70,528 KB
testcase_29 AC 64 ms
69,832 KB
testcase_30 AC 72 ms
74,496 KB
testcase_31 AC 74 ms
74,588 KB
testcase_32 AC 86 ms
76,544 KB
testcase_33 AC 39 ms
52,224 KB
testcase_34 AC 40 ms
52,736 KB
testcase_35 AC 38 ms
52,480 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, a, b, x, y = map(int, input().split())
H = list(map(int, input().split()))

q = []
for h in H:
    q.append(-h)

import heapq
heapq.heapify(q)
for i in range(a):
    if q:
        v = heapq.heappop(q)
        v = -v
        if v > x:
            v -= x
            heapq.heappush(q, -v)
if not q:
    print('Yes')
    exit()
s = 0
while  q:
    v = heapq.heappop(q)
    v = -v
    s += v
if s <= y*b:
    print('Yes')
else:
    print('No')
0