結果

問題 No.67 よくある棒を切る問題 (1)
ユーザー ytft
提出日時 2022-11-07 10:02:57
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 249 bytes
コンパイル時間 348 ms
コンパイル使用メモリ 82,308 KB
実行使用メモリ 109,536 KB
最終ジャッジ日時 2025-03-03 12:03:23
合計ジャッジ時間 8,809 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 9 TLE * 1 -- * 20
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input=lambda:sys.stdin.readline().rstrip()
N=int(input())
L=list(map(int,input().split()))
K=int(input())
m=[0.0,float(max(L))]
while m[1]-m[0]>10**(-10):
	mid=sum(m)/2
	count=0
	for i in L:
		count+=int(i/mid)
	m[K>count]=mid
print(m[1])
0