結果

問題 No.67 よくある棒を切る問題 (1)
ユーザー mokomoko
提出日時 2018-04-27 23:37:01
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 2,358 ms / 5,000 ms
コード長 404 bytes
コンパイル時間 109 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 32,684 KB
最終ジャッジ日時 2024-11-08 12:42:00
合計ジャッジ時間 44,493 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,630 ms
32,580 KB
testcase_01 AC 31 ms
10,752 KB
testcase_02 AC 913 ms
18,928 KB
testcase_03 AC 1,710 ms
26,548 KB
testcase_04 AC 1,958 ms
29,380 KB
testcase_05 AC 1,958 ms
29,252 KB
testcase_06 AC 1,801 ms
29,248 KB
testcase_07 AC 2,358 ms
32,684 KB
testcase_08 AC 2,356 ms
32,556 KB
testcase_09 AC 2,088 ms
32,556 KB
testcase_10 AC 1,778 ms
27,544 KB
testcase_11 AC 1,867 ms
28,564 KB
testcase_12 AC 1,575 ms
26,996 KB
testcase_13 AC 2,166 ms
31,168 KB
testcase_14 AC 2,235 ms
31,824 KB
testcase_15 AC 1,804 ms
29,292 KB
testcase_16 AC 1,554 ms
29,256 KB
testcase_17 AC 1,536 ms
29,272 KB
testcase_18 AC 1,497 ms
29,248 KB
testcase_19 AC 1,457 ms
32,548 KB
testcase_20 AC 1,447 ms
32,556 KB
testcase_21 AC 1,434 ms
32,556 KB
testcase_22 AC 1,350 ms
27,544 KB
testcase_23 AC 1,419 ms
28,436 KB
testcase_24 AC 30 ms
10,880 KB
testcase_25 AC 78 ms
11,136 KB
testcase_26 AC 48 ms
10,880 KB
testcase_27 AC 42 ms
10,752 KB
testcase_28 AC 408 ms
14,068 KB
testcase_29 AC 224 ms
12,288 KB
testcase_30 AC 81 ms
11,392 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def INPUT():
	n=int(input())
	l=list(map(int,input().split()))
	k=int(input())
	return n,l,k

def ok(mid,n,l,k):
	cnt=0
	for i in range(n):
		cnt+=l[i]//mid
	return cnt>=k

def solve(n,l,k):
	ub,lb=[max(l),0]
	for i in range(60):
		mid=(ub+lb)/2
		if ok(mid,n,l,k):
			lb=mid
		else:
			ub=mid
	return lb

def main():
	n,l,k=INPUT()
	print("{:.20}".format(solve(n,l,k)))

if __name__=="__main__":
	main()
0