結果

問題 No.68 よくある棒を切る問題 (2)
ユーザー maspymaspy
提出日時 2020-03-24 15:32:55
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,576 ms / 5,000 ms
コード長 522 bytes
コンパイル時間 368 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 53,620 KB
最終ジャッジ日時 2024-06-10 06:00:28
合計ジャッジ時間 22,498 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,509 ms
53,556 KB
testcase_01 AC 1,576 ms
53,620 KB
testcase_02 AC 1,531 ms
53,560 KB
testcase_03 AC 1,496 ms
53,348 KB
testcase_04 AC 1,514 ms
53,248 KB
testcase_05 AC 1,539 ms
53,352 KB
testcase_06 AC 1,488 ms
52,312 KB
testcase_07 AC 1,523 ms
52,640 KB
testcase_08 AC 1,352 ms
51,488 KB
testcase_09 AC 1,416 ms
51,616 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/ python3.8
import sys
read = sys.stdin.buffer.read
readline = sys.stdin.buffer.readline
readlines = sys.stdin.buffer.readlines
from heapq import heapify, heapreplace

N = int(readline())
q = [(-int(x), 1) for x in readline().split()]
Q = int(readline())
K = tuple(map(int, readline().split()))

U = 5 * 10**5
answer = [0] * (U + 1)

heapify(q)

for i in range(1, U + 1):
    x, j = q[0]
    answer[i] = -x
    x *= j
    j += 1
    x /= j
    heapreplace(q, (x, j))

print('\n'.join(str(answer[k]) for k in K))
0