結果
問題 | No.1736 Princess vs. Dragoness |
ユーザー |
|
提出日時 | 2021-10-13 05:44:38 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 417 bytes |
コンパイル時間 | 206 ms |
コンパイル使用メモリ | 82,252 KB |
実行使用メモリ | 76,248 KB |
最終ジャッジ日時 | 2024-11-25 10:53:09 |
合計ジャッジ時間 | 3,316 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 25 WA * 8 |
ソースコード
def solve2(n, a, b, x, y, h): import heapq hm = [-x for x in h] heapq.heapify(hm) for i in range(a): target = heapq.heappop(hm) target += x heapq.heappush(hm, target) h = [-x for x in hm] if sum(h) <= b * y: return 'Yes' else: return 'No' n, a, b, x, y = map(int,input().split()) h = list(map(int,input().split())) print(solve2(n, a, b, x, y, h))