結果

問題 No.67 よくある棒を切る問題 (1)
ユーザー ytft
提出日時 2022-11-07 09:59:34
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 368 bytes
コンパイル時間 430 ms
コンパイル使用メモリ 82,568 KB
実行使用メモリ 247,032 KB
最終ジャッジ日時 2025-03-03 12:03:30
合計ジャッジ時間 7,493 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 1 TLE * 1 -- * 28
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys,heapq
input=lambda:sys.stdin.readline().rstrip()
N=int(input())
L=list(map(int,input().split()))
K=list(map(int,input().split()))
check=[]
M=max(K)
h=[]
for i in range(N):
	heapq.heappush(h,[-L[i],1])
while len(check)<M:
	temp=heapq.heappop(h)
	check.append(-temp[0])
	heapq.heappush(h,[temp[0]*temp[1]/(temp[1]+1),temp[1]+1])
for i in K:
	print(check[i-1])
0