結果

問題 No.68 よくある棒を切る問題 (2)
ユーザー ytftytft
提出日時 2022-11-07 09:58:37
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 3,477 ms / 5,000 ms
コード長 383 bytes
コンパイル時間 431 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 171,404 KB
最終ジャッジ日時 2024-07-20 18:27:29
合計ジャッジ時間 44,853 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3,477 ms
157,440 KB
testcase_01 AC 3,391 ms
161,792 KB
testcase_02 AC 3,404 ms
162,840 KB
testcase_03 AC 3,309 ms
170,764 KB
testcase_04 AC 3,313 ms
170,320 KB
testcase_05 AC 3,271 ms
171,404 KB
testcase_06 AC 3,194 ms
152,564 KB
testcase_07 AC 3,348 ms
155,212 KB
testcase_08 AC 3,110 ms
162,564 KB
testcase_09 AC 3,111 ms
168,592 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys,heapq
input=lambda:sys.stdin.readline().rstrip()
N=int(input())
L=list(map(int,input().split()))
Q=int(input())
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