結果

問題 No.1736 Princess vs. Dragoness
ユーザー brthyyjpbrthyyjp
提出日時 2021-11-13 02:27:06
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 93 ms / 2,000 ms
コード長 443 bytes
コンパイル時間 185 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 76,500 KB
最終ジャッジ日時 2024-05-04 19:03:17
合計ジャッジ時間 3,617 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,968 KB
testcase_01 AC 43 ms
52,480 KB
testcase_02 AC 42 ms
52,736 KB
testcase_03 AC 57 ms
61,696 KB
testcase_04 AC 60 ms
65,408 KB
testcase_05 AC 42 ms
53,120 KB
testcase_06 AC 75 ms
73,216 KB
testcase_07 AC 84 ms
76,160 KB
testcase_08 AC 67 ms
69,120 KB
testcase_09 AC 75 ms
72,704 KB
testcase_10 AC 42 ms
52,864 KB
testcase_11 AC 93 ms
76,500 KB
testcase_12 AC 64 ms
68,096 KB
testcase_13 AC 77 ms
75,036 KB
testcase_14 AC 74 ms
72,960 KB
testcase_15 AC 58 ms
64,384 KB
testcase_16 AC 63 ms
67,584 KB
testcase_17 AC 73 ms
71,936 KB
testcase_18 AC 69 ms
70,400 KB
testcase_19 AC 69 ms
71,040 KB
testcase_20 AC 54 ms
61,824 KB
testcase_21 AC 71 ms
70,784 KB
testcase_22 AC 68 ms
70,912 KB
testcase_23 AC 82 ms
76,416 KB
testcase_24 AC 45 ms
59,008 KB
testcase_25 AC 67 ms
69,376 KB
testcase_26 AC 86 ms
76,288 KB
testcase_27 AC 87 ms
76,160 KB
testcase_28 AC 69 ms
71,040 KB
testcase_29 AC 66 ms
69,120 KB
testcase_30 AC 76 ms
74,100 KB
testcase_31 AC 78 ms
74,368 KB
testcase_32 AC 89 ms
76,364 KB
testcase_33 AC 40 ms
52,096 KB
testcase_34 AC 40 ms
52,352 KB
testcase_35 AC 41 ms
52,096 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