結果

問題 No.1736 Princess vs. Dragoness
ユーザー gr1msl3ygr1msl3y
提出日時 2021-11-12 22:13:12
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 322 bytes
コンパイル時間 299 ms
コンパイル使用メモリ 81,872 KB
実行使用メモリ 74,964 KB
最終ジャッジ日時 2024-11-25 19:07:02
合計ジャッジ時間 3,202 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,096 KB
testcase_01 AC 38 ms
52,212 KB
testcase_02 AC 36 ms
52,716 KB
testcase_03 AC 44 ms
59,576 KB
testcase_04 WA -
testcase_05 AC 43 ms
60,128 KB
testcase_06 AC 54 ms
65,368 KB
testcase_07 AC 73 ms
73,420 KB
testcase_08 AC 66 ms
71,320 KB
testcase_09 AC 69 ms
72,276 KB
testcase_10 AC 48 ms
60,784 KB
testcase_11 AC 71 ms
74,964 KB
testcase_12 AC 51 ms
63,976 KB
testcase_13 WA -
testcase_14 AC 48 ms
63,436 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 57 ms
64,344 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 44 ms
59,412 KB
testcase_21 AC 59 ms
68,272 KB
testcase_22 AC 66 ms
72,592 KB
testcase_23 AC 48 ms
62,444 KB
testcase_24 AC 37 ms
52,708 KB
testcase_25 AC 69 ms
72,524 KB
testcase_26 AC 62 ms
70,600 KB
testcase_27 AC 57 ms
67,376 KB
testcase_28 AC 48 ms
62,140 KB
testcase_29 AC 43 ms
59,492 KB
testcase_30 AC 56 ms
64,304 KB
testcase_31 WA -
testcase_32 AC 65 ms
72,764 KB
testcase_33 AC 37 ms
52,652 KB
testcase_34 AC 37 ms
52,364 KB
testcase_35 AC 37 ms
52,652 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]
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