結果

問題 No.1736 Princess vs. Dragoness
ユーザー gr1msl3ygr1msl3y
提出日時 2021-11-12 22:17:44
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 81 ms / 2,000 ms
コード長 334 bytes
コンパイル時間 162 ms
コンパイル使用メモリ 82,224 KB
実行使用メモリ 74,368 KB
最終ジャッジ日時 2024-05-04 09:14:59
合計ジャッジ時間 3,298 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
51,840 KB
testcase_01 AC 38 ms
51,968 KB
testcase_02 AC 40 ms
52,864 KB
testcase_03 AC 48 ms
59,776 KB
testcase_04 AC 58 ms
64,768 KB
testcase_05 AC 49 ms
59,648 KB
testcase_06 AC 61 ms
66,176 KB
testcase_07 AC 67 ms
69,760 KB
testcase_08 AC 70 ms
69,888 KB
testcase_09 AC 67 ms
69,248 KB
testcase_10 AC 48 ms
59,904 KB
testcase_11 AC 81 ms
74,368 KB
testcase_12 AC 54 ms
63,360 KB
testcase_13 AC 55 ms
64,384 KB
testcase_14 AC 52 ms
63,232 KB
testcase_15 AC 47 ms
59,904 KB
testcase_16 AC 59 ms
65,152 KB
testcase_17 AC 53 ms
63,360 KB
testcase_18 AC 51 ms
62,976 KB
testcase_19 AC 50 ms
62,336 KB
testcase_20 AC 48 ms
60,672 KB
testcase_21 AC 62 ms
67,328 KB
testcase_22 AC 68 ms
69,760 KB
testcase_23 AC 52 ms
62,464 KB
testcase_24 AC 40 ms
52,736 KB
testcase_25 AC 72 ms
70,016 KB
testcase_26 AC 66 ms
70,400 KB
testcase_27 AC 63 ms
66,560 KB
testcase_28 AC 50 ms
61,440 KB
testcase_29 AC 45 ms
59,776 KB
testcase_30 AC 57 ms
64,492 KB
testcase_31 AC 74 ms
73,088 KB
testcase_32 AC 71 ms
73,216 KB
testcase_33 AC 40 ms
52,096 KB
testcase_34 AC 39 ms
52,096 KB
testcase_35 AC 41 ms
51,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import heapq as hq
N, A, B, X, Y = map(int, input().split())
H = list(map(int, input().split()))
S = sum(H)
task = [-h for h in H]
task.sort()
for _ in range(A):
    v = -hq.heappop(task)
    if v >= X:
        S -= X
        v -= X
    else:
        S -= v
        v = 0
    hq.heappush(task, -v)

print('Yes' if S <= B*Y else 'No')
0