結果

問題 No.68 よくある棒を切る問題 (2)
ユーザー colognecologne
提出日時 2022-01-25 11:35:36
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,049 ms / 5,000 ms
コード長 511 bytes
コンパイル時間 257 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 181,500 KB
最終ジャッジ日時 2024-12-15 22:09:14
合計ジャッジ時間 28,119 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2,032 ms
169,680 KB
testcase_01 AC 2,049 ms
170,076 KB
testcase_02 AC 2,001 ms
170,344 KB
testcase_03 AC 1,974 ms
180,908 KB
testcase_04 AC 2,018 ms
180,364 KB
testcase_05 AC 2,023 ms
181,500 KB
testcase_06 AC 1,898 ms
166,600 KB
testcase_07 AC 1,972 ms
169,784 KB
testcase_08 AC 1,829 ms
179,924 KB
testcase_09 AC 1,920 ms
179,296 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import heapq
import sys


def input(): return sys.stdin.readline().rstrip()


def main():
    N = int(input())
    *L, = map(int, input().split())
    int(input())  # Q
    *K, = map(int, input().split())

    ans = [float('inf')]

    Q = [(-L[i], i, 1) for i in range(N)]
    heapq.heapify(Q)

    for i in range(max(K)):
        c, iv, kv = Q[0]
        ans.append(-c)
        heapq.heappushpop(Q, (-L[iv]/(kv+1), iv, kv+1))

    print(*[ans[k] for k in K], sep='\n')


if __name__ == '__main__':
    main()
0