結果

問題 No.67 よくある棒を切る問題 (1)
ユーザー letrangerjpletrangerjp
提出日時 2017-06-18 13:53:49
言語 Ruby
(3.3.0)
結果
AC  
実行時間 2,485 ms / 5,000 ms
コード長 246 bytes
コンパイル時間 556 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 105,816 KB
最終ジャッジ日時 2024-11-08 12:12:40
合計ジャッジ時間 37,961 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2,485 ms
99,428 KB
testcase_01 AC 85 ms
12,416 KB
testcase_02 AC 500 ms
33,280 KB
testcase_03 AC 856 ms
60,160 KB
testcase_04 AC 1,091 ms
79,104 KB
testcase_05 AC 1,093 ms
79,232 KB
testcase_06 AC 1,260 ms
88,448 KB
testcase_07 AC 1,164 ms
84,608 KB
testcase_08 AC 1,163 ms
84,480 KB
testcase_09 AC 1,338 ms
89,088 KB
testcase_10 AC 993 ms
70,400 KB
testcase_11 AC 1,048 ms
75,008 KB
testcase_12 AC 1,072 ms
76,288 KB
testcase_13 AC 1,065 ms
76,416 KB
testcase_14 AC 1,106 ms
78,976 KB
testcase_15 AC 1,110 ms
80,000 KB
testcase_16 AC 1,470 ms
88,320 KB
testcase_17 AC 1,539 ms
88,448 KB
testcase_18 AC 2,025 ms
87,392 KB
testcase_19 AC 1,678 ms
97,472 KB
testcase_20 AC 2,358 ms
63,076 KB
testcase_21 AC 2,296 ms
61,412 KB
testcase_22 AC 2,005 ms
103,200 KB
testcase_23 AC 1,947 ms
105,816 KB
testcase_24 AC 85 ms
12,288 KB
testcase_25 AC 104 ms
13,440 KB
testcase_26 AC 89 ms
12,288 KB
testcase_27 AC 87 ms
12,416 KB
testcase_28 AC 251 ms
24,960 KB
testcase_29 AC 164 ms
18,048 KB
testcase_30 AC 104 ms
13,184 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

N = gets.to_i
L = gets.split.take(N).map(&:to_i)
K = gets.to_i
M = 10**9
last = L.sum.quo(K).ceil * M
LL = L.map{|v| v * M }

ans = (0..last).bsearch{|_i|
  i = last - _i
  sum = LL.map{|l| (l / i).floor }.sum
  sum >= K
}
p (last - ans).fdiv(M)
0