結果

問題 No.67 よくある棒を切る問題 (1)
ユーザー wotsushiwotsushi
提出日時 2017-04-12 18:45:59
言語 Ruby
(3.3.0)
結果
AC  
実行時間 2,975 ms / 5,000 ms
コード長 220 bytes
コンパイル時間 220 ms
コンパイル使用メモリ 7,680 KB
実行使用メモリ 87,168 KB
最終ジャッジ日時 2024-11-08 12:02:33
合計ジャッジ時間 70,473 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2,963 ms
87,168 KB
testcase_01 AC 86 ms
12,288 KB
testcase_02 AC 1,205 ms
61,696 KB
testcase_03 AC 2,152 ms
82,304 KB
testcase_04 AC 2,957 ms
86,272 KB
testcase_05 AC 2,927 ms
86,144 KB
testcase_06 AC 2,933 ms
86,272 KB
testcase_07 AC 2,934 ms
86,912 KB
testcase_08 AC 2,964 ms
86,784 KB
testcase_09 AC 2,941 ms
86,912 KB
testcase_10 AC 2,675 ms
82,944 KB
testcase_11 AC 2,816 ms
86,912 KB
testcase_12 AC 2,560 ms
82,816 KB
testcase_13 AC 2,710 ms
83,456 KB
testcase_14 AC 2,819 ms
86,272 KB
testcase_15 AC 2,530 ms
82,560 KB
testcase_16 AC 2,943 ms
86,144 KB
testcase_17 AC 2,962 ms
86,272 KB
testcase_18 AC 2,970 ms
86,144 KB
testcase_19 AC 2,972 ms
86,912 KB
testcase_20 AC 2,975 ms
86,912 KB
testcase_21 AC 2,962 ms
86,912 KB
testcase_22 AC 2,704 ms
82,944 KB
testcase_23 AC 2,811 ms
86,912 KB
testcase_24 AC 85 ms
12,160 KB
testcase_25 AC 144 ms
15,232 KB
testcase_26 AC 107 ms
13,056 KB
testcase_27 AC 100 ms
12,544 KB
testcase_28 AC 538 ms
30,208 KB
testcase_29 AC 314 ms
25,344 KB
testcase_30 AC 147 ms
15,232 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

N = gets.to_i
L = gets.split.map(&:to_i)
K = gets.to_i
ans = (1..(100)).inject([0.0, L.max]) {|(i, s), _|
  c = (s + i) / 2
  if L.map {|l| (l / c).floor}.inject(:+) >= K
    [c, s]
  else
    [i, c]
  end
}[0]
puts ans
0