結果

問題 No.1736 Princess vs. Dragoness
ユーザー gr1msl3ygr1msl3y
提出日時 2021-11-12 22:13:12
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 322 bytes
コンパイル時間 302 ms
コンパイル使用メモリ 82,248 KB
実行使用メモリ 74,880 KB
最終ジャッジ日時 2024-05-04 09:08:16
合計ジャッジ時間 3,456 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,480 KB
testcase_01 AC 42 ms
52,096 KB
testcase_02 AC 39 ms
52,420 KB
testcase_03 AC 46 ms
59,520 KB
testcase_04 WA -
testcase_05 AC 47 ms
59,648 KB
testcase_06 AC 58 ms
65,920 KB
testcase_07 AC 75 ms
73,188 KB
testcase_08 AC 71 ms
71,296 KB
testcase_09 AC 70 ms
71,680 KB
testcase_10 AC 48 ms
60,800 KB
testcase_11 AC 78 ms
74,880 KB
testcase_12 AC 54 ms
63,744 KB
testcase_13 WA -
testcase_14 AC 55 ms
62,976 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 57 ms
64,384 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 46 ms
58,880 KB
testcase_21 AC 63 ms
67,968 KB
testcase_22 AC 72 ms
72,192 KB
testcase_23 AC 50 ms
62,720 KB
testcase_24 AC 39 ms
52,864 KB
testcase_25 AC 72 ms
72,960 KB
testcase_26 AC 64 ms
70,620 KB
testcase_27 AC 60 ms
67,584 KB
testcase_28 AC 53 ms
62,848 KB
testcase_29 AC 46 ms
59,776 KB
testcase_30 AC 57 ms
65,024 KB
testcase_31 WA -
testcase_32 AC 71 ms
72,448 KB
testcase_33 AC 39 ms
52,992 KB
testcase_34 AC 39 ms
52,352 KB
testcase_35 AC 35 ms
53,424 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