結果

問題 No.67 よくある棒を切る問題 (1)
ユーザー gigurururugigurururu
提出日時 2014-11-25 13:24:10
言語 Ruby
(3.3.0)
結果
AC  
実行時間 1,571 ms / 5,000 ms
コード長 201 bytes
コンパイル時間 922 ms
コンパイル使用メモリ 7,296 KB
実行使用メモリ 87,040 KB
最終ジャッジ日時 2024-11-08 11:22:30
合計ジャッジ時間 32,063 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,008 ms
60,672 KB
testcase_01 AC 91 ms
12,288 KB
testcase_02 AC 604 ms
33,280 KB
testcase_03 AC 1,096 ms
62,080 KB
testcase_04 AC 1,564 ms
86,144 KB
testcase_05 AC 1,571 ms
86,016 KB
testcase_06 AC 1,402 ms
81,664 KB
testcase_07 AC 1,484 ms
87,040 KB
testcase_08 AC 1,489 ms
87,040 KB
testcase_09 AC 1,287 ms
76,032 KB
testcase_10 AC 1,417 ms
81,664 KB
testcase_11 AC 1,502 ms
86,016 KB
testcase_12 AC 1,223 ms
70,656 KB
testcase_13 AC 1,370 ms
79,360 KB
testcase_14 AC 1,414 ms
81,920 KB
testcase_15 AC 1,130 ms
66,560 KB
testcase_16 AC 1,112 ms
65,920 KB
testcase_17 AC 1,061 ms
62,848 KB
testcase_18 AC 1,010 ms
59,776 KB
testcase_19 AC 1,004 ms
60,416 KB
testcase_20 AC 1,007 ms
60,544 KB
testcase_21 AC 1,008 ms
60,288 KB
testcase_22 AC 922 ms
53,376 KB
testcase_23 AC 974 ms
57,344 KB
testcase_24 AC 90 ms
12,160 KB
testcase_25 AC 122 ms
13,696 KB
testcase_26 AC 101 ms
12,544 KB
testcase_27 AC 96 ms
12,288 KB
testcase_28 AC 314 ms
26,112 KB
testcase_29 AC 208 ms
19,200 KB
testcase_30 AC 123 ms
13,696 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

gets
la=gets.split.map(&:to_i)
k=gets.to_i

eps=1e-9
l=0.0
r=1e9

while [(l-r).abs,(l-r).abs/r].all?{|d|d>eps}
  c=(l+r)/2
  la.map{|i|(i/c).to_i}.inject(:+)>=k ?(l=c):(r=c)
end

p (l+r)/2
0