結果

問題 No.67 よくある棒を切る問題 (1)
ユーザー mokomoko
提出日時 2018-03-16 09:40:45
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 405 bytes
コンパイル時間 566 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 32,840 KB
最終ジャッジ日時 2024-06-26 20:19:19
合計ジャッジ時間 41,769 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,497 ms
32,840 KB
testcase_01 WA -
testcase_02 AC 809 ms
19,184 KB
testcase_03 AC 1,542 ms
26,724 KB
testcase_04 AC 1,773 ms
29,376 KB
testcase_05 AC 1,783 ms
29,380 KB
testcase_06 AC 1,638 ms
29,376 KB
testcase_07 AC 2,140 ms
32,812 KB
testcase_08 AC 2,124 ms
32,720 KB
testcase_09 AC 1,909 ms
32,680 KB
testcase_10 AC 1,603 ms
27,664 KB
testcase_11 AC 1,699 ms
28,564 KB
testcase_12 AC 1,435 ms
26,996 KB
testcase_13 AC 1,952 ms
31,172 KB
testcase_14 AC 2,007 ms
32,076 KB
testcase_15 AC 1,634 ms
29,416 KB
testcase_16 AC 1,426 ms
29,380 KB
testcase_17 AC 1,400 ms
29,372 KB
testcase_18 AC 1,378 ms
29,504 KB
testcase_19 AC 1,336 ms
32,804 KB
testcase_20 AC 1,307 ms
32,680 KB
testcase_21 AC 1,297 ms
32,680 KB
testcase_22 AC 1,211 ms
27,804 KB
testcase_23 AC 1,289 ms
28,568 KB
testcase_24 AC 29 ms
10,752 KB
testcase_25 AC 72 ms
11,264 KB
testcase_26 AC 45 ms
11,008 KB
testcase_27 AC 39 ms
10,880 KB
testcase_28 AC 368 ms
14,200 KB
testcase_29 AC 207 ms
12,416 KB
testcase_30 AC 75 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(55):
		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