結果

問題 No.67 よくある棒を切る問題 (1)
ユーザー simansiman
提出日時 2021-01-02 18:09:10
言語 Ruby
(3.4.1)
結果
AC  
実行時間 2,836 ms / 5,000 ms
コード長 270 bytes
コンパイル時間 751 ms
コンパイル使用メモリ 7,296 KB
実行使用メモリ 26,368 KB
最終ジャッジ日時 2024-11-08 13:29:33
合計ジャッジ時間 67,290 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2,782 ms
26,368 KB
testcase_01 AC 89 ms
12,672 KB
testcase_02 AC 1,117 ms
17,536 KB
testcase_03 AC 2,038 ms
22,784 KB
testcase_04 AC 2,789 ms
25,600 KB
testcase_05 AC 2,812 ms
25,344 KB
testcase_06 AC 2,807 ms
25,600 KB
testcase_07 AC 2,778 ms
26,240 KB
testcase_08 AC 2,836 ms
26,112 KB
testcase_09 AC 2,790 ms
26,368 KB
testcase_10 AC 2,533 ms
24,064 KB
testcase_11 AC 2,680 ms
24,704 KB
testcase_12 AC 2,437 ms
23,552 KB
testcase_13 AC 2,571 ms
25,088 KB
testcase_14 AC 2,656 ms
25,600 KB
testcase_15 AC 2,415 ms
24,320 KB
testcase_16 AC 2,788 ms
25,472 KB
testcase_17 AC 2,777 ms
25,472 KB
testcase_18 AC 2,786 ms
25,728 KB
testcase_19 AC 2,793 ms
26,368 KB
testcase_20 AC 2,797 ms
26,368 KB
testcase_21 AC 2,815 ms
26,240 KB
testcase_22 AC 2,522 ms
24,064 KB
testcase_23 AC 2,652 ms
25,216 KB
testcase_24 AC 90 ms
12,416 KB
testcase_25 AC 144 ms
12,288 KB
testcase_26 AC 109 ms
12,416 KB
testcase_27 AC 102 ms
12,288 KB
testcase_28 AC 528 ms
14,208 KB
testcase_29 AC 305 ms
13,184 KB
testcase_30 AC 146 ms
12,544 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

N = gets.to_i
L = gets.split.map(&:to_i)
K = gets.to_i

def f(x)
  cnt = 0

  L.each do |l|
    cnt += (l / x).floor
  end

  K <= cnt
end

ok = 0.0
ng = 10.0 ** 18

100.times do
  x = (ok + ng) / 2.0

  if f(x)
    ok = x
  else
    ng = x
  end
end

puts ok.round(12)
0