結果

問題 No.68 よくある棒を切る問題 (2)
ユーザー maspymaspy
提出日時 2020-03-24 15:29:04
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,767 ms / 5,000 ms
コード長 522 bytes
コンパイル時間 126 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 53,524 KB
最終ジャッジ日時 2024-06-10 05:58:08
合計ジャッジ時間 24,196 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,579 ms
53,524 KB
testcase_01 AC 1,627 ms
53,524 KB
testcase_02 AC 1,700 ms
53,488 KB
testcase_03 AC 1,595 ms
53,376 KB
testcase_04 AC 1,548 ms
53,328 KB
testcase_05 AC 1,579 ms
53,372 KB
testcase_06 AC 1,560 ms
51,688 KB
testcase_07 AC 1,767 ms
52,528 KB
testcase_08 AC 1,458 ms
51,464 KB
testcase_09 AC 1,535 ms
51,652 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, heappushpop

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
    heappushpop(q, (x, j))

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