結果

問題 No.67 よくある棒を切る問題 (1)
ユーザー letrangerjpletrangerjp
提出日時 2017-06-18 13:12:48
言語 Ruby
(3.4.1)
結果
AC  
実行時間 2,011 ms / 5,000 ms
コード長 243 bytes
コンパイル時間 262 ms
コンパイル使用メモリ 7,680 KB
実行使用メモリ 87,808 KB
最終ジャッジ日時 2024-11-08 12:09:27
合計ジャッジ時間 48,054 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2,011 ms
87,808 KB
testcase_01 AC 90 ms
12,032 KB
testcase_02 AC 802 ms
39,168 KB
testcase_03 AC 1,456 ms
79,232 KB
testcase_04 AC 1,973 ms
86,912 KB
testcase_05 AC 1,999 ms
86,912 KB
testcase_06 AC 2,009 ms
86,784 KB
testcase_07 AC 1,978 ms
87,552 KB
testcase_08 AC 1,984 ms
87,552 KB
testcase_09 AC 1,982 ms
87,424 KB
testcase_10 AC 1,797 ms
83,072 KB
testcase_11 AC 1,890 ms
86,784 KB
testcase_12 AC 1,729 ms
82,944 KB
testcase_13 AC 1,821 ms
83,456 KB
testcase_14 AC 1,889 ms
86,272 KB
testcase_15 AC 1,697 ms
82,432 KB
testcase_16 AC 1,988 ms
86,784 KB
testcase_17 AC 1,974 ms
86,912 KB
testcase_18 AC 1,972 ms
86,912 KB
testcase_19 AC 1,974 ms
87,552 KB
testcase_20 AC 2,006 ms
87,552 KB
testcase_21 AC 1,975 ms
87,552 KB
testcase_22 AC 1,785 ms
83,072 KB
testcase_23 AC 1,913 ms
86,784 KB
testcase_24 AC 90 ms
12,032 KB
testcase_25 AC 128 ms
13,696 KB
testcase_26 AC 102 ms
12,672 KB
testcase_27 AC 98 ms
12,416 KB
testcase_28 AC 392 ms
29,440 KB
testcase_29 AC 242 ms
20,736 KB
testcase_30 AC 129 ms
13,952 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

N = gets.to_i
L = gets.split.take(N).map(&:to_i)
K = gets.to_i
start = 0.0
last = L.sum.quo(K).ceil * 1.0

count = 0
ans = (start..last).bsearch{|_i|
  i = last - _i
  sum = L.map{|l| (l / i).floor }.sum
  count += 1
  sum >= K
}
p last - ans
0