結果

問題 No.68 よくある棒を切る問題 (2)
ユーザー titiatitia
提出日時 2021-12-26 03:27:46
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,232 ms / 5,000 ms
コード長 579 bytes
コンパイル時間 157 ms
コンパイル使用メモリ 82,224 KB
実行使用メモリ 125,580 KB
最終ジャッジ日時 2024-09-22 09:04:30
合計ジャッジ時間 20,550 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,191 ms
113,160 KB
testcase_01 AC 1,160 ms
113,324 KB
testcase_02 AC 1,173 ms
109,252 KB
testcase_03 AC 1,217 ms
125,528 KB
testcase_04 AC 1,232 ms
125,536 KB
testcase_05 AC 1,199 ms
125,580 KB
testcase_06 AC 1,126 ms
109,332 KB
testcase_07 AC 1,117 ms
111,376 KB
testcase_08 AC 1,128 ms
119,044 KB
testcase_09 AC 1,163 ms
124,604 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# 解説 http://rsujskf.s602.xrea.com/?yukicoder_68
# を見ました。
# easyとは違う解法なのは驚き。特に、二分探索ではない方法があるというのは意外でした。

import sys
input = sys.stdin.readline
import heapq

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

H=[]
for l in L:
    heapq.heappush(H,(-l,1))

ANS=[0]*(5*10**5+1)

for i in range(1,5*10**5+1):
    x,y=heapq.heappop(H)
    x=-x
    ANS[i]=x
    moto=x*y
    y+=1

    heapq.heappush(H,(-moto/y,y))

for k in K:
    print(ANS[k])
0