結果

問題 No.68 よくある棒を切る問題 (2)
ユーザー 37zigen37zigen
提出日時 2020-07-26 01:29:52
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 2,034 ms / 5,000 ms
コード長 331 bytes
コンパイル時間 207 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 53,924 KB
最終ジャッジ日時 2024-06-27 18:40:08
合計ジャッジ時間 27,903 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2,011 ms
53,324 KB
testcase_01 AC 2,034 ms
53,924 KB
testcase_02 AC 1,900 ms
53,340 KB
testcase_03 AC 1,897 ms
53,024 KB
testcase_04 AC 1,891 ms
53,116 KB
testcase_05 AC 1,933 ms
52,932 KB
testcase_06 AC 1,799 ms
51,940 KB
testcase_07 AC 1,862 ms
51,712 KB
testcase_08 AC 1,686 ms
51,176 KB
testcase_09 AC 1,705 ms
52,272 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import heapify, heapreplace
n=int(input())
q=[(-int(x),1) for x in input().split()]
Q=int(input())
K=[int(x) for x in input().split()]
U=5 * 10**5
ans=[-1]*(U+1)

heapify(q)

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

print("\n".join(str(ans[i]) for i in K))
0