結果

問題 No.68 よくある棒を切る問題 (2)
ユーザー colognecologne
提出日時 2022-01-25 11:35:36
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 3,250 ms / 5,000 ms
コード長 511 bytes
コンパイル時間 200 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 181,620 KB
最終ジャッジ日時 2024-05-09 10:06:20
合計ジャッジ時間 41,803 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3,174 ms
169,812 KB
testcase_01 AC 3,230 ms
169,808 KB
testcase_02 AC 3,181 ms
170,444 KB
testcase_03 AC 3,180 ms
180,524 KB
testcase_04 AC 3,173 ms
180,240 KB
testcase_05 AC 3,250 ms
181,620 KB
testcase_06 AC 2,992 ms
166,724 KB
testcase_07 AC 3,049 ms
169,788 KB
testcase_08 AC 2,897 ms
179,792 KB
testcase_09 AC 3,065 ms
179,272 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