結果

問題 No.731 等差数列がだいすき
ユーザー minamiminami
提出日時 2019-04-04 17:08:50
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 498 ms / 1,500 ms
コード長 421 bytes
コンパイル時間 94 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 44,588 KB
最終ジャッジ日時 2024-06-07 16:57:07
合計ジャッジ時間 13,040 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 472 ms
43,812 KB
testcase_01 AC 498 ms
44,332 KB
testcase_02 AC 488 ms
44,332 KB
testcase_03 AC 486 ms
44,336 KB
testcase_04 AC 473 ms
44,204 KB
testcase_05 AC 478 ms
44,332 KB
testcase_06 AC 472 ms
44,580 KB
testcase_07 AC 497 ms
44,588 KB
testcase_08 AC 474 ms
44,332 KB
testcase_09 AC 496 ms
44,196 KB
testcase_10 AC 480 ms
44,200 KB
testcase_11 AC 475 ms
43,948 KB
testcase_12 AC 478 ms
44,236 KB
testcase_13 AC 476 ms
44,332 KB
testcase_14 AC 467 ms
44,336 KB
testcase_15 AC 482 ms
44,200 KB
testcase_16 AC 470 ms
44,076 KB
testcase_17 AC 491 ms
44,460 KB
testcase_18 AC 475 ms
44,328 KB
testcase_19 AC 481 ms
43,952 KB
testcase_20 AC 475 ms
44,452 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np
N = int(input())
y = list(map(int, input().split()))
x = [i for i in range(N)]


def least_squares(x, y):
    n = len(x)
    var_x = np.var(x)
    mu_x = np.mean(x)
    mu_y = np.mean(y)
    cov = sum((x-mu_x)*(y-mu_y)) / n
    a = cov / var_x
    b = mu_y - a*mu_x
    cost = sum((_y - a*_x - b) ** 2 for _x, _y in zip(x, y))
    return a, b, cost


a, b, c = least_squares(x, y)
print(b, a)
print(c)
0