結果

問題 No.1251 絶対に間違ってはいけない最小化問題
ユーザー tamura2004tamura2004
提出日時 2021-01-22 20:32:48
言語 Ruby
(3.3.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 388 bytes
コンパイル時間 309 ms
コンパイル使用メモリ 7,296 KB
実行使用メモリ 34,560 KB
最終ジャッジ日時 2024-06-08 12:09:24
合計ジャッジ時間 59,031 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 80 ms
12,288 KB
testcase_01 AC 78 ms
12,032 KB
testcase_02 AC 78 ms
12,160 KB
testcase_03 AC 78 ms
12,160 KB
testcase_04 AC 77 ms
12,288 KB
testcase_05 AC 81 ms
12,288 KB
testcase_06 AC 79 ms
12,160 KB
testcase_07 AC 79 ms
12,160 KB
testcase_08 AC 79 ms
12,288 KB
testcase_09 AC 82 ms
12,160 KB
testcase_10 AC 81 ms
12,288 KB
testcase_11 AC 78 ms
12,160 KB
testcase_12 AC 79 ms
12,160 KB
testcase_13 AC 80 ms
12,160 KB
testcase_14 AC 80 ms
12,160 KB
testcase_15 AC 80 ms
12,160 KB
testcase_16 AC 83 ms
12,160 KB
testcase_17 AC 86 ms
12,160 KB
testcase_18 TLE -
testcase_19 TLE -
testcase_20 AC 1,268 ms
26,496 KB
testcase_21 AC 253 ms
13,952 KB
testcase_22 AC 1,350 ms
27,776 KB
testcase_23 AC 201 ms
12,544 KB
testcase_24 AC 1,660 ms
32,000 KB
testcase_25 AC 1,310 ms
27,008 KB
testcase_26 AC 506 ms
16,128 KB
testcase_27 AC 201 ms
12,672 KB
testcase_28 TLE -
testcase_29 TLE -
testcase_30 TLE -
testcase_31 TLE -
testcase_32 TLE -
testcase_33 TLE -
testcase_34 TLE -
testcase_35 TLE -
testcase_36 TLE -
testcase_37 TLE -
testcase_38 TLE -
testcase_39 TLE -
testcase_40 TLE -
testcase_41 TLE -
testcase_42 TLE -
testcase_43 AC 80 ms
12,032 KB
testcase_44 AC 78 ms
12,032 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

n = gets.to_s.to_i
a = gets.to_s.split.map { |v| v.to_i }
b = gets.to_s.split.map { |v| v.to_i }
f = ->x { n.times.sum { |i| b[i] * (a[i] - x).abs } }

lo = -1000000
hi = 1000000
while hi - lo > 2
  # 40.times do
  left = (lo * 2 + hi) / 3
  right = (lo + hi * 2) / 3
  if f[left] < f[right]
    hi = right
  else
    lo = left
  end
end

x = (lo + hi) / 2
y = f[x]
puts [x, y].join(" ")
0