結果
問題 |
No.1736 Princess vs. Dragoness
|
ユーザー |
![]() |
提出日時 | 2021-11-12 21:54:41 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 85 ms / 2,000 ms |
コード長 | 425 bytes |
コンパイル時間 | 187 ms |
コンパイル使用メモリ | 82,244 KB |
実行使用メモリ | 76,708 KB |
最終ジャッジ日時 | 2024-11-25 18:14:14 |
合計ジャッジ時間 | 3,301 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 33 |
ソースコード
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')