結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,315 ms
149,932 KB
testcase_01 AC 1,324 ms
153,504 KB
testcase_02 AC 1,321 ms
153,984 KB
testcase_03 AC 1,363 ms
158,320 KB
testcase_04 AC 1,366 ms
158,556 KB
testcase_05 AC 1,360 ms
158,324 KB
testcase_06 AC 1,258 ms
145,756 KB
testcase_07 AC 1,310 ms
148,148 KB
testcase_08 AC 1,276 ms
157,500 KB
testcase_09 AC 1,383 ms
157,264 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