結果

問題 No.68 よくある棒を切る問題 (2)
ユーザー 👑 rin204rin204
提出日時 2022-09-29 19:24:52
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,115 ms / 5,000 ms
コード長 329 bytes
コンパイル時間 448 ms
コンパイル使用メモリ 82,008 KB
実行使用メモリ 158,828 KB
最終ジャッジ日時 2024-06-02 02:06:26
合計ジャッジ時間 19,503 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,077 ms
150,072 KB
testcase_01 AC 1,103 ms
153,740 KB
testcase_02 AC 1,111 ms
153,676 KB
testcase_03 AC 1,094 ms
158,276 KB
testcase_04 AC 1,115 ms
158,792 KB
testcase_05 AC 1,087 ms
158,828 KB
testcase_06 AC 1,062 ms
145,880 KB
testcase_07 AC 1,101 ms
148,308 KB
testcase_08 AC 1,053 ms
157,580 KB
testcase_09 AC 1,058 ms
157,176 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import *

n = int(input())
L = list(map(int, input().split()))
hq = [(-l, 1) for l in L]
heapify(hq)
ans = [-1]
for _ in range(500000):
    l, c = heappop(hq)
    l *= -1
    ans.append(l)
    heappush(hq, (-l * c / (c + 1), c + 1))

Q = int(input())
K = list(map(int, input().split()))
for k in K:
    print(ans[k])

0