結果

問題 No.68 よくある棒を切る問題 (2)
ユーザー tnodinotnodino
提出日時 2022-03-06 15:43:01
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 2,973 ms / 5,000 ms
コード長 422 bytes
コンパイル時間 311 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 58,124 KB
最終ジャッジ日時 2024-07-21 01:16:14
合計ジャッジ時間 37,600 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2,973 ms
58,072 KB
testcase_01 AC 2,728 ms
57,980 KB
testcase_02 AC 2,736 ms
58,080 KB
testcase_03 AC 2,696 ms
58,124 KB
testcase_04 AC 1,891 ms
58,116 KB
testcase_05 AC 1,968 ms
58,116 KB
testcase_06 AC 1,803 ms
53,824 KB
testcase_07 AC 1,813 ms
56,368 KB
testcase_08 AC 1,663 ms
53,996 KB
testcase_09 AC 1,782 ms
55,824 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import heappush, heappop
N = int(input())
L = list(map(int,input().split()))
heap = []
for i in range(N):
    heappush(heap, (-L[i], i))
M = 500000
ans = [0] * (M+1)
cnt = [0] * N
for i in range(1,M+1):
    A,P = heappop(heap)
    A *= -1
    ans[i] = A
    cnt[P] += 1
    heappush(heap, (-(L[P] / (cnt[P] + 1.0)), P))
Q = int(input())
K = list(map(int,input().split()))
for i in range(Q):
    print(ans[K[i]])
0