結果

問題 No.731 等差数列がだいすき
ユーザー simansiman
提出日時 2022-02-14 03:42:36
言語 Ruby
(3.3.0)
結果
AC  
実行時間 98 ms / 1,500 ms
コード長 553 bytes
コンパイル時間 312 ms
コンパイル使用メモリ 7,680 KB
実行使用メモリ 12,672 KB
最終ジャッジ日時 2024-06-29 05:54:46
合計ジャッジ時間 3,570 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 89 ms
12,416 KB
testcase_01 AC 87 ms
12,288 KB
testcase_02 AC 86 ms
12,160 KB
testcase_03 AC 91 ms
12,416 KB
testcase_04 AC 94 ms
12,416 KB
testcase_05 AC 90 ms
12,288 KB
testcase_06 AC 95 ms
12,672 KB
testcase_07 AC 93 ms
12,544 KB
testcase_08 AC 91 ms
12,672 KB
testcase_09 AC 94 ms
12,544 KB
testcase_10 AC 94 ms
12,672 KB
testcase_11 AC 85 ms
12,416 KB
testcase_12 AC 89 ms
12,544 KB
testcase_13 AC 90 ms
12,672 KB
testcase_14 AC 92 ms
12,672 KB
testcase_15 AC 94 ms
12,544 KB
testcase_16 AC 91 ms
12,416 KB
testcase_17 AC 95 ms
12,672 KB
testcase_18 AC 96 ms
12,544 KB
testcase_19 AC 96 ms
12,416 KB
testcase_20 AC 98 ms
12,672 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

N = gets.to_i
A = gets.split.map(&:to_i)

P = []

A.each_with_index do |y, x|
  P << [x, y]
end

a = Rational(
  N * P.map { |x, y| x * y }.sum - P.map(&:first).sum * P.map(&:last).sum,
  N * P.map { |x, _| x ** 2 }.sum - P.map(&:first).sum ** 2
)
b = Rational(
  P.map { |x, _| x ** 2 }.sum * P.map(&:last).sum - P.map { |x, y| x * y }.sum * P.map(&:first).sum,
  N * P.map { |x, _| x ** 2 }.sum - P.map(&:first).sum ** 2
)

puts [b.to_f.round(12), a.to_f.round(12)].join(' ')
puts A.map.with_index { |v, x| ((a * x + b) - v) ** 2 }.sum.to_f.round(12)
0