結果

問題 No.68 よくある棒を切る問題 (2)
ユーザー titiatitia
提出日時 2021-12-26 03:28:25
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 2,063 ms / 5,000 ms
コード長 579 bytes
コンパイル時間 95 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 48,940 KB
最終ジャッジ日時 2024-09-22 09:05:14
合計ジャッジ時間 28,111 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2,020 ms
48,908 KB
testcase_01 AC 2,063 ms
48,940 KB
testcase_02 AC 2,036 ms
48,876 KB
testcase_03 AC 1,935 ms
48,548 KB
testcase_04 AC 1,936 ms
48,532 KB
testcase_05 AC 1,986 ms
48,704 KB
testcase_06 AC 1,886 ms
46,424 KB
testcase_07 AC 1,944 ms
46,908 KB
testcase_08 AC 1,827 ms
46,144 KB
testcase_09 AC 1,871 ms
47,532 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