結果

問題 No.68 よくある棒を切る問題 (2)
ユーザー rpy3cpprpy3cpp
提出日時 2015-07-22 19:32:51
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,892 ms / 5,000 ms
コード長 261 bytes
コンパイル時間 373 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 48,856 KB
最終ジャッジ日時 2024-06-06 03:14:31
合計ジャッジ時間 27,157 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,892 ms
48,200 KB
testcase_01 AC 1,856 ms
48,856 KB
testcase_02 AC 1,885 ms
48,184 KB
testcase_03 AC 1,643 ms
48,624 KB
testcase_04 AC 1,636 ms
48,624 KB
testcase_05 AC 1,637 ms
48,640 KB
testcase_06 AC 1,751 ms
45,728 KB
testcase_07 AC 1,752 ms
47,328 KB
testcase_08 AC 1,572 ms
45,948 KB
testcase_09 AC 1,638 ms
47,288 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