結果

問題 No.68 よくある棒を切る問題 (2)
ユーザー convexineqconvexineq
提出日時 2021-05-13 13:08:04
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,029 ms / 5,000 ms
コード長 405 bytes
コンパイル時間 256 ms
コンパイル使用メモリ 81,948 KB
実行使用メモリ 119,988 KB
最終ジャッジ日時 2024-09-25 02:28:40
合計ジャッジ時間 17,194 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,022 ms
113,080 KB
testcase_01 AC 1,013 ms
113,524 KB
testcase_02 AC 1,015 ms
113,044 KB
testcase_03 AC 915 ms
119,764 KB
testcase_04 AC 908 ms
118,160 KB
testcase_05 AC 920 ms
118,468 KB
testcase_06 AC 985 ms
113,236 KB
testcase_07 AC 1,029 ms
114,328 KB
testcase_08 AC 879 ms
119,988 KB
testcase_09 AC 906 ms
118,368 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import *
n = int(input())
*a, = map(int,input().split())
a.sort(reverse=1)
q = [(-ai*1.0,1) for ai in a]
cnt = 1
Q = int(input())
*k, = map(int,input().split())
ans = [0.0]*Q
order = sorted(range(Q),key = lambda i:k[i])
for i in order:
    for _ in range(k[i]-cnt):
        v,c = heappop(q)
        heappush(q,(v*c/(c+1),c+1))
    ans[i] = -q[0][0]
    cnt = k[i]
print("\n".join(map(str,ans)))
0