結果

問題 No.1736 Princess vs. Dragoness
コンテスト
ユーザー hir355
提出日時 2021-11-12 21:54:41
言語 PyPy3
(7.3.17)
コンパイル:
pypy3 -mpy_compile _filename_
実行:
pypy3 _filename_
結果
AC  
実行時間 88 ms / 2,000 ms
+ 897µs
コード長 425 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 296 ms
コンパイル使用メモリ 95,856 KB
実行使用メモリ 84,380 KB
最終ジャッジ日時 2026-07-13 00:48:39
合計ジャッジ時間 4,711 ms
ジャッジサーバーID
(参考情報)
judge3_0 / judge2_0
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 34
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

from heapq import heapify, heappush, heappop
n, a, b, x, y = map(int, input().split())
h = list(map(lambda x:-int(x), input().split()))
heapify(h)
for i in range(a):
    xx = -heappop(h)
    xx -= x
    heappush(h, -xx)
h = list(map(lambda x:-x, h))
t = b * y
for i in range(n):
    d = max(0, min(h[i], t))
    h[i] -= d
    t -= d
for i in range(n):
    if h[i] > 0:
        print('No')
        break
else:
    print('Yes')
0