結果
| 問題 |
No.1736 Princess vs. Dragoness
|
| コンテスト | |
| ユーザー |
👑 Kazun
|
| 提出日時 | 2021-11-12 21:38:08 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
AC
|
| 実行時間 | 84 ms / 2,000 ms |
| コード長 | 297 bytes |
| コンパイル時間 | 179 ms |
| コンパイル使用メモリ | 82,176 KB |
| 実行使用メモリ | 76,824 KB |
| 最終ジャッジ日時 | 2025-07-04 14:03:17 |
| 合計ジャッジ時間 | 3,510 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 34 |
ソースコード
from heapq import heapify,heappop,heappush
N,A,B,X,Y=map(int,input().split())
H=list(map(int,input().split()))
H=[-hp for hp in H]
heapify(H)
for _ in range(A):
if not H:
continue
hp=-heappop(H)
if hp>=X:
heappush(H,-(hp-X))
print("Yes" if -sum(H)<=B*Y else "No")
Kazun