結果

問題 No.731 等差数列がだいすき
ユーザー maspymaspy
提出日時 2020-01-02 15:30:04
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 516 ms / 1,500 ms
コード長 434 bytes
コンパイル時間 177 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 44,588 KB
最終ジャッジ日時 2024-11-22 18:06:00
合計ジャッジ時間 12,148 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 492 ms
44,464 KB
testcase_01 AC 501 ms
44,332 KB
testcase_02 AC 498 ms
44,208 KB
testcase_03 AC 499 ms
44,196 KB
testcase_04 AC 499 ms
44,336 KB
testcase_05 AC 509 ms
43,960 KB
testcase_06 AC 496 ms
43,952 KB
testcase_07 AC 498 ms
43,952 KB
testcase_08 AC 506 ms
44,588 KB
testcase_09 AC 504 ms
44,080 KB
testcase_10 AC 502 ms
44,344 KB
testcase_11 AC 500 ms
44,072 KB
testcase_12 AC 494 ms
44,084 KB
testcase_13 AC 503 ms
44,460 KB
testcase_14 AC 504 ms
44,208 KB
testcase_15 AC 501 ms
44,080 KB
testcase_16 AC 516 ms
44,456 KB
testcase_17 AC 498 ms
43,948 KB
testcase_18 AC 493 ms
43,832 KB
testcase_19 AC 498 ms
44,460 KB
testcase_20 AC 501 ms
43,960 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
read = sys.stdin.buffer.read
readline = sys.stdin.buffer.readline
readlines = sys.stdin.buffer.readlines

import numpy as np

# いわゆる最小二乗法

N = int(readline())
x = np.arange(N)
y = np.array(read().split(),np.int64)

mu_x = x.mean(); mu_y = y.mean()

a = np.dot(x - mu_x, y - mu_y) / np.dot(x - mu_x, x - mu_x)

fit_y = a * (x - mu_x) + mu_y
error = ((y - fit_y) ** 2).sum()

print(fit_y[0], a)
print(error)
0