結果
| 問題 |
No.1736 Princess vs. Dragoness
|
| コンテスト | |
| ユーザー |
mrng
|
| 提出日時 | 2021-11-18 18:32:37 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
AC
|
| 実行時間 | 78 ms / 2,000 ms |
| コード長 | 262 bytes |
| コンパイル時間 | 175 ms |
| コンパイル使用メモリ | 82,244 KB |
| 実行使用メモリ | 76,828 KB |
| 最終ジャッジ日時 | 2025-07-04 14:06:09 |
| 合計ジャッジ時間 | 3,112 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 34 |
ソースコード
n,a,b,x,y = map(int,input().split())
h = list(map(int,input().split()))
from heapq import heappush, heappop
hq = []
for i in h:
heappush(hq,-i)
for i in range(a):
t = heappop(hq)
t = min(0,t+x)
heappush(hq,t)
if -sum(hq)<=b*y: print('Yes')
else: print('No')
mrng