結果

問題 No.68 よくある棒を切る問題 (2)
ユーザー pluto77pluto77
提出日時 2018-11-12 11:31:37
言語 Python2
(2.7.18)
結果
AC  
実行時間 2,110 ms / 5,000 ms
コード長 360 bytes
コンパイル時間 412 ms
コンパイル使用メモリ 7,040 KB
実行使用メモリ 55,740 KB
最終ジャッジ日時 2024-12-21 15:46:43
合計ジャッジ時間 30,072 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2,008 ms
55,056 KB
testcase_01 AC 2,110 ms
55,020 KB
testcase_02 AC 2,102 ms
55,148 KB
testcase_03 AC 2,034 ms
55,676 KB
testcase_04 AC 2,084 ms
55,740 KB
testcase_05 AC 2,054 ms
55,688 KB
testcase_06 AC 1,950 ms
52,316 KB
testcase_07 AC 1,979 ms
53,868 KB
testcase_08 AC 1,814 ms
51,892 KB
testcase_09 AC 1,991 ms
53,352 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#yuki68

from heapq import heappush, heappop

N=int(raw_input())
L=map(int,raw_input().split())
Q=int(raw_input())
K=map(int,raw_input().split())

res=[0.0 for i in xrange(max(K)+1)]
hp=[]
for l in L:
    heappush(hp,(-l,l,1))
for i in range(1,max(K)+1):
    (a,b,n)=heappop(hp)
    res[i]=-a
    heappush(hp,(-1.0*b/(n+1),b,n+1))
for k in K:
    print res[k]
0