結果

問題 No.67 よくある棒を切る問題 (1)
ユーザー wotsushiwotsushi
提出日時 2017-04-12 18:44:02
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 219 bytes
コンパイル時間 327 ms
コンパイル使用メモリ 7,680 KB
実行使用メモリ 87,040 KB
最終ジャッジ日時 2024-07-18 10:24:19
合計ジャッジ時間 40,484 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,613 ms
87,040 KB
testcase_01 WA -
testcase_02 AC 659 ms
33,280 KB
testcase_03 AC 1,186 ms
65,408 KB
testcase_04 AC 1,614 ms
86,272 KB
testcase_05 AC 1,618 ms
86,144 KB
testcase_06 AC 1,612 ms
86,144 KB
testcase_07 AC 1,617 ms
86,784 KB
testcase_08 AC 1,613 ms
86,784 KB
testcase_09 AC 1,611 ms
86,784 KB
testcase_10 AC 1,470 ms
81,536 KB
testcase_11 AC 1,534 ms
87,040 KB
testcase_12 AC 1,404 ms
78,848 KB
testcase_13 AC 1,495 ms
83,456 KB
testcase_14 AC 1,541 ms
86,272 KB
testcase_15 AC 1,380 ms
78,592 KB
testcase_16 AC 1,625 ms
86,272 KB
testcase_17 AC 1,616 ms
86,144 KB
testcase_18 AC 1,617 ms
86,144 KB
testcase_19 AC 1,626 ms
86,784 KB
testcase_20 AC 1,622 ms
86,912 KB
testcase_21 AC 1,620 ms
86,656 KB
testcase_22 AC 1,461 ms
81,536 KB
testcase_23 AC 1,539 ms
86,016 KB
testcase_24 AC 88 ms
12,160 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 97 ms
12,416 KB
testcase_28 AC 334 ms
26,624 KB
testcase_29 AC 210 ms
19,200 KB
testcase_30 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

N = gets.to_i
L = gets.split.map(&:to_i)
K = gets.to_i
ans = (1..(50)).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