結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2,430 ms
32,556 KB
testcase_01 AC 31 ms
10,752 KB
testcase_02 AC 1,068 ms
19,000 KB
testcase_03 AC 2,010 ms
26,568 KB
testcase_04 AC 2,031 ms
29,344 KB
testcase_05 AC 2,032 ms
29,216 KB
testcase_06 AC 1,683 ms
29,340 KB
testcase_07 AC 2,782 ms
33,264 KB
testcase_08 AC 2,791 ms
33,268 KB
testcase_09 AC 3,752 ms
33,392 KB
testcase_10 AC 1,834 ms
26,420 KB
testcase_11 AC 1,954 ms
28,380 KB
testcase_12 AC 1,479 ms
26,528 KB
testcase_13 AC 2,551 ms
30,940 KB
testcase_14 AC 2,652 ms
32,184 KB
testcase_15 AC 3,235 ms
29,936 KB
testcase_16 AC 1,664 ms
29,352 KB
testcase_17 AC 1,436 ms
29,328 KB
testcase_18 AC 1,330 ms
29,340 KB
testcase_19 AC 1,355 ms
33,260 KB
testcase_20 AC 1,259 ms
33,388 KB
testcase_21 AC 1,271 ms
33,256 KB
testcase_22 AC 1,209 ms
27,528 KB
testcase_23 AC 1,263 ms
28,416 KB
testcase_24 AC 30 ms
10,624 KB
testcase_25 AC 87 ms
11,136 KB
testcase_26 AC 51 ms
10,880 KB
testcase_27 AC 45 ms
10,624 KB
testcase_28 AC 479 ms
14,080 KB
testcase_29 AC 262 ms
12,396 KB
testcase_30 AC 90 ms
11,008 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