結果

問題 No.68 よくある棒を切る問題 (2)
ユーザー szkhtsszkhts
提出日時 2024-08-25 08:33:49
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 3,367 ms / 5,000 ms
コード長 309 bytes
コンパイル時間 230 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 279,932 KB
最終ジャッジ日時 2024-08-25 08:34:36
合計ジャッジ時間 42,929 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3,352 ms
276,072 KB
testcase_01 AC 3,321 ms
276,344 KB
testcase_02 AC 3,335 ms
276,180 KB
testcase_03 AC 3,005 ms
279,932 KB
testcase_04 AC 3,037 ms
279,452 KB
testcase_05 AC 3,061 ms
278,748 KB
testcase_06 AC 3,200 ms
271,880 KB
testcase_07 AC 3,367 ms
274,712 KB
testcase_08 AC 2,975 ms
273,100 KB
testcase_09 AC 2,969 ms
275,004 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

num = []

L.sort(reverse = True)

for i in range(N):
    for j in range(500002 // (i + 1)):
        num.append(L[i] / (j + 1.0))
        
num.sort(reverse = True)

for k in K:
    print(num[k - 1])
    
0