結果

問題 No.68 よくある棒を切る問題 (2)
ユーザー rpy3cpprpy3cpp
提出日時 2015-07-22 19:32:51
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 2,020 ms / 5,000 ms
コード長 261 bytes
コンパイル時間 289 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 48,872 KB
最終ジャッジ日時 2024-12-23 14:19:13
合計ジャッジ時間 23,574 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,517 ms
48,220 KB
testcase_01 AC 1,487 ms
48,844 KB
testcase_02 AC 1,469 ms
48,204 KB
testcase_03 AC 1,330 ms
48,872 KB
testcase_04 AC 1,317 ms
48,768 KB
testcase_05 AC 1,285 ms
48,832 KB
testcase_06 AC 1,458 ms
45,684 KB
testcase_07 AC 2,020 ms
47,560 KB
testcase_08 AC 1,334 ms
46,100 KB
testcase_09 AC 1,259 ms
47,292 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import heapq
N=input()
L=list(map(int,input().split()))
Q=input()
K=list(map(int,input().split()))
S=max(K)+1
W=[0]*S
L.sort(reverse=True)
h=[(-w,1) for w in L]
for k in range(1,S):
 w,n=h[0]
 W[k]=-w
 heapq.heapreplace(h,(w*n/(n+1),n+1))
for k in K:print(W[k])
0