結果

問題 No.67 よくある棒を切る問題 (1)
ユーザー superzugansuperzugan
提出日時 2023-09-10 04:02:25
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 3,732 ms / 5,000 ms
コード長 257 bytes
コンパイル時間 333 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 33,388 KB
最終ジャッジ日時 2024-06-27 19:46:45
合計ジャッジ時間 50,637 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2,456 ms
32,680 KB
testcase_01 AC 31 ms
10,752 KB
testcase_02 AC 1,073 ms
19,148 KB
testcase_03 AC 2,009 ms
26,440 KB
testcase_04 AC 2,027 ms
29,480 KB
testcase_05 AC 2,040 ms
29,216 KB
testcase_06 AC 1,669 ms
29,344 KB
testcase_07 AC 2,776 ms
33,272 KB
testcase_08 AC 2,758 ms
33,260 KB
testcase_09 AC 3,732 ms
33,168 KB
testcase_10 AC 1,833 ms
26,552 KB
testcase_11 AC 1,924 ms
28,408 KB
testcase_12 AC 1,469 ms
26,652 KB
testcase_13 AC 2,552 ms
31,148 KB
testcase_14 AC 2,658 ms
32,320 KB
testcase_15 AC 3,222 ms
30,124 KB
testcase_16 AC 1,617 ms
29,344 KB
testcase_17 AC 1,404 ms
29,208 KB
testcase_18 AC 1,337 ms
29,208 KB
testcase_19 AC 1,344 ms
33,388 KB
testcase_20 AC 1,248 ms
33,256 KB
testcase_21 AC 1,239 ms
33,272 KB
testcase_22 AC 1,178 ms
27,524 KB
testcase_23 AC 1,245 ms
28,292 KB
testcase_24 AC 30 ms
10,624 KB
testcase_25 AC 87 ms
11,008 KB
testcase_26 AC 50 ms
10,880 KB
testcase_27 AC 44 ms
10,624 KB
testcase_28 AC 472 ms
14,080 KB
testcase_29 AC 257 ms
12,272 KB
testcase_30 AC 89 ms
11,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
al=list(map(int,input().split()))
k=int(input())
def zen(x):
	ans=0
	for i in al:
		if i>=x:ans+=i//x
	return ans>=k
	
ok,ng=0,10**10+1
cut=0
while(ng-ok>=10**-10 and cut<100):
	mid=(ok+ng)/2
	if zen(mid):ok=mid
	else:ng=mid
	cut+=1
print(ok)
0