結果
問題 |
No.1736 Princess vs. Dragoness
|
ユーザー |
![]() |
提出日時 | 2021-11-24 23:28:32 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
RE
|
実行時間 | - |
コード長 | 374 bytes |
コンパイル時間 | 113 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 11,008 KB |
最終ジャッジ日時 | 2024-06-27 09:02:11 |
合計ジャッジ時間 | 2,430 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 30 RE * 3 |
ソースコード
from sys import stdin from heapq import heappush, heappop n, a, b, x, y, *h = map(int, stdin.read().split()) hq = [] for i in range(n): heappush(hq, -h[i]) for i in range(a): now = -heappop(hq) if now > x: kari = now - x heappush(hq, -kari) kari = 0 while hq: kari += -heappop(hq) if kari <= b * y: print("Yes") else: print("No")