結果

問題 No.68 よくある棒を切る問題 (2)
ユーザー KudeKude
提出日時 2021-01-25 02:01:22
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,098 ms / 5,000 ms
コード長 387 bytes
コンパイル時間 306 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 131,064 KB
最終ジャッジ日時 2024-06-11 20:13:42
合計ジャッジ時間 18,167 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,078 ms
123,532 KB
testcase_01 AC 1,088 ms
124,100 KB
testcase_02 AC 1,092 ms
124,036 KB
testcase_03 AC 1,090 ms
129,840 KB
testcase_04 AC 1,098 ms
130,808 KB
testcase_05 AC 1,083 ms
131,064 KB
testcase_06 AC 1,008 ms
119,236 KB
testcase_07 AC 1,066 ms
121,912 KB
testcase_08 AC 1,047 ms
129,320 KB
testcase_09 AC 1,054 ms
129,908 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import heappop, heappush, heapify

n = int(input())
l = list(map(int, input().split()))
d = [0] * (5 * 10 ** 5 + 1)
cnt = [0] * n
q = [(-l[i], i) for i in range(n)]
heapify(q)
for c in range(1, 5 * 10 ** 5 + 1):
    x, i = heappop(q)
    x = -x
    d[c] = x
    cnt[i] += 1
    heappush(q, (-l[i] / (cnt[i] + 1), i))
input()
for k in map(int, input().split()):
    print(d[k])
0