結果

問題 No.1736 Princess vs. Dragoness
ユーザー Shirotsume
提出日時 2021-10-14 22:53:45
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 80 ms / 2,000 ms
コード長 433 bytes
コンパイル時間 466 ms
コンパイル使用メモリ 82,576 KB
実行使用メモリ 76,900 KB
最終ジャッジ日時 2025-07-04 14:01:43
合計ジャッジ時間 4,203 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 34
権限があれば一括ダウンロードができます

ソースコード

diff #

def solve2(n, a, b, x, y, h):
    import heapq
    hm = [-x for x in h]
    heapq.heapify(hm)
    for i in range(a):
        target = heapq.heappop(hm)
        target = min(0, x + target)
        heapq.heappush(hm, target)
    h = [-x for x in hm]
    if sum(h) <= b * y:
        return 'Yes'
    else:
        return 'No'


n, a, b, x, y = map(int,input().split())
h = list(map(int,input().split()))
print(solve2(n, a, b, x, y, h))
0