結果

問題 No.1736 Princess vs. Dragoness
コンテスト
ユーザー NatsubiSogan
提出日時 2021-11-12 23:57:37
言語 PyPy3
(7.3.17)
コンパイル:
pypy3 -mpy_compile _filename_
実行:
pypy3 _filename_
結果
AC  
実行時間 114 ms / 2,000 ms
+ 216µs
コード長 283 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 274 ms
コンパイル使用メモリ 96,100 KB
実行使用メモリ 83,584 KB
最終ジャッジ日時 2026-07-13 00:51:45
合計ジャッジ時間 4,713 ms
ジャッジサーバーID
(参考情報)
judge3_1 / judge2_0
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 34
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

n, a, b, x, y = map(int, input().split())
h = list(map(int, input().split()))
for i in range(a): h[h.index(max(h))] -= x
for i in range(b):
	now = y
	for j in range(n):
		if h[j] < 0: continue
		tmp = min(h[j], now)
		now -= tmp
		h[j] -= tmp
print("Yes" if max(h) <= 0 else "No")
		
0