結果

問題 No.68 よくある棒を切る問題 (2)
ユーザー yaoshimaxyaoshimax
提出日時 2015-02-26 00:40:30
言語 Python2
(2.7.18)
結果
AC  
実行時間 2,370 ms / 5,000 ms
コード長 354 bytes
コンパイル時間 56 ms
コンパイル使用メモリ 7,040 KB
実行使用メモリ 55,752 KB
最終ジャッジ日時 2024-06-23 23:46:12
合計ジャッジ時間 32,628 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2,238 ms
55,072 KB
testcase_01 AC 2,280 ms
55,064 KB
testcase_02 AC 2,229 ms
55,196 KB
testcase_03 AC 2,243 ms
55,752 KB
testcase_04 AC 2,236 ms
55,560 KB
testcase_05 AC 2,332 ms
55,688 KB
testcase_06 AC 2,191 ms
52,472 KB
testcase_07 AC 2,370 ms
53,812 KB
testcase_08 AC 2,125 ms
51,324 KB
testcase_09 AC 2,231 ms
53,524 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import heappush, heappop
N=int(raw_input())
L=map(int,raw_input().split())

ans = [0.0 for i in xrange(500001)]
hp=[]
for l in L:
    heappush(hp,(-l,l,1))

for i in range(1,500001):
    (a,bar,n)=heappop(hp)
    ans[i]=-a
    heappush(hp,(-bar/(n+1.0),bar,n+1))

Q=int(raw_input())
K=map(int,raw_input().split())
for k in K:
    print ans[k]
0