結果
| 問題 |
No.1736 Princess vs. Dragoness
|
| コンテスト | |
| ユーザー |
mrng
|
| 提出日時 | 2021-11-18 18:26:46 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 254 bytes |
| コンパイル時間 | 410 ms |
| コンパイル使用メモリ | 82,432 KB |
| 実行使用メモリ | 76,288 KB |
| 最終ジャッジ日時 | 2024-12-26 16:38:16 |
| 合計ジャッジ時間 | 4,796 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 25 WA * 8 |
ソースコード
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 += x
heappush(hq,t)
if -sum(hq)<=b*y: print('Yes')
else: print('No')
mrng