結果

問題 No.67 よくある棒を切る問題 (1)
ユーザー horiesinitihoriesiniti
提出日時 2023-02-11 00:23:57
言語 Ruby
(3.3.0)
結果
AC  
実行時間 1,556 ms / 5,000 ms
コード長 339 bytes
コンパイル時間 268 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 26,112 KB
最終ジャッジ日時 2024-07-07 17:54:42
合計ジャッジ時間 38,092 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,505 ms
26,112 KB
testcase_01 AC 75 ms
12,160 KB
testcase_02 AC 615 ms
17,280 KB
testcase_03 AC 1,165 ms
22,400 KB
testcase_04 AC 1,507 ms
25,344 KB
testcase_05 AC 1,510 ms
25,088 KB
testcase_06 AC 1,512 ms
25,088 KB
testcase_07 AC 1,540 ms
26,112 KB
testcase_08 AC 1,504 ms
25,984 KB
testcase_09 AC 1,505 ms
25,984 KB
testcase_10 AC 1,371 ms
23,936 KB
testcase_11 AC 1,437 ms
24,448 KB
testcase_12 AC 1,317 ms
23,296 KB
testcase_13 AC 1,390 ms
24,960 KB
testcase_14 AC 1,449 ms
25,344 KB
testcase_15 AC 1,293 ms
24,064 KB
testcase_16 AC 1,510 ms
25,344 KB
testcase_17 AC 1,511 ms
25,216 KB
testcase_18 AC 1,505 ms
25,344 KB
testcase_19 AC 1,505 ms
25,984 KB
testcase_20 AC 1,503 ms
26,112 KB
testcase_21 AC 1,556 ms
25,984 KB
testcase_22 AC 1,370 ms
23,936 KB
testcase_23 AC 1,442 ms
25,088 KB
testcase_24 AC 76 ms
12,160 KB
testcase_25 AC 103 ms
12,160 KB
testcase_26 AC 85 ms
12,288 KB
testcase_27 AC 84 ms
12,032 KB
testcase_28 AC 310 ms
13,952 KB
testcase_29 AC 190 ms
12,928 KB
testcase_30 AC 105 ms
12,160 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.rb:21: warning: assigned but unused variable - n
Syntax OK

ソースコード

diff #

def f(l,xs)
	ans=0
	xs.each{|x|
		ans+=(x/l).to_i
	}
	return ans
end
def fb(l,r,k,xs,d)
	if d>77then
		return l
	else
		m=(l+r)/2.0
		k2=f(m,xs)
		if k2<k then
			return fb(l,m,k,xs,d+1)
		else
			return fb(m,r,k,xs,d+1)
		end
	end
end
n=gets.to_i
xs=gets.split(" ").map{|e| e.to_f}
k=gets.to_i
puts sprintf("%0.11f",fb(0.0,xs.max,k,xs,0))
0