結果

問題 No.68 よくある棒を切る問題 (2)
ユーザー noriocnorioc
提出日時 2024-08-26 01:10:09
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,609 ms / 5,000 ms
コード長 447 bytes
コンパイル時間 495 ms
コンパイル使用メモリ 82,236 KB
実行使用メモリ 155,276 KB
最終ジャッジ日時 2024-08-26 01:10:47
合計ジャッジ時間 32,883 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2,502 ms
137,272 KB
testcase_01 AC 2,471 ms
133,016 KB
testcase_02 AC 2,609 ms
137,000 KB
testcase_03 AC 2,605 ms
155,276 KB
testcase_04 AC 2,569 ms
155,024 KB
testcase_05 AC 2,444 ms
155,012 KB
testcase_06 AC 2,222 ms
129,600 KB
testcase_07 AC 2,364 ms
129,024 KB
testcase_08 AC 2,247 ms
146,016 KB
testcase_09 AC 2,274 ms
151,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import heappush, heappop

N = int(input())
L = list(map(int, input().split()))
Q = int(input())
K = list(map(int, input().split()))

q = []
for i, l in enumerate(L):
    heappush(q, (-l, 1, i))  # (長さ, 棒の本数, 棒インデックス)

kmax = max(K)
ans = [0] * (kmax+1)
for i in range(1, kmax+1):
    l, cnt, p = heappop(q)
    ans[i] = -l

    heappush(q, (-L[p] / (cnt+1), cnt+1, p))

for k in K:
    print(f'{ans[k]:.10f}')
0