結果

問題 No.68 よくある棒を切る問題 (2)
ユーザー gigurururugigurururu
提出日時 2014-11-25 13:33:52
言語 Python2
(2.7.18)
結果
AC  
実行時間 2,586 ms / 5,000 ms
コード長 282 bytes
コンパイル時間 501 ms
コンパイル使用メモリ 7,040 KB
実行使用メモリ 52,740 KB
最終ジャッジ日時 2025-01-02 21:39:55
合計ジャッジ時間 36,341 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2,483 ms
52,712 KB
testcase_01 AC 2,436 ms
52,716 KB
testcase_02 AC 2,586 ms
52,460 KB
testcase_03 AC 2,462 ms
52,612 KB
testcase_04 AC 2,457 ms
52,740 KB
testcase_05 AC 2,447 ms
52,740 KB
testcase_06 AC 2,340 ms
50,344 KB
testcase_07 AC 2,402 ms
51,692 KB
testcase_08 AC 2,289 ms
49,776 KB
testcase_09 AC 2,308 ms
50,792 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import heapq

n=input()
l=[(-float(i),1) for i in raw_input().split()]
q=input()

heapq.heapify(l)
a=[]

for _ in range(500000):
    s,n=heapq.heappop(l)
    a.append(s)
    heapq.heappush(l,(s*n/(n+1),n+1))

for i in map(int,raw_input().split()):
    print -a[i-1]
0