結果

問題 No.68 よくある棒を切る問題 (2)
ユーザー rkyiolklorkyiolklo
提出日時 2020-04-21 00:19:10
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,666 ms / 5,000 ms
コード長 435 bytes
コンパイル時間 106 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 52,100 KB
最終ジャッジ日時 2024-10-06 09:39:17
合計ジャッジ時間 23,862 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,602 ms
51,364 KB
testcase_01 AC 1,569 ms
51,916 KB
testcase_02 AC 1,597 ms
51,396 KB
testcase_03 AC 1,637 ms
52,100 KB
testcase_04 AC 1,666 ms
51,980 KB
testcase_05 AC 1,626 ms
52,012 KB
testcase_06 AC 1,519 ms
47,408 KB
testcase_07 AC 1,548 ms
49,088 KB
testcase_08 AC 1,400 ms
48,312 KB
testcase_09 AC 1,490 ms
50,000 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import heapq 
def solve():
    n = int(input())
    L = list(map(int,input().split()))
    q = int(input())
    k = list(map(int,input().split()))

    h = []
    for i in range(n):
        heapq.heappush(h, (-L[i], 1, i))

    max = 500001
    a = [0.0] * max 
    for j in range(1, max):
        l, n, i = h[0]
        a[j] = -l 
        heapq.heapreplace(h, (-L[i]/(n + 1), n + 1, i))

    for k_ in k:
        print(a[k_])

solve()
0