結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 545 ms
43,956 KB
testcase_01 AC 477 ms
43,692 KB
testcase_02 AC 476 ms
43,576 KB
testcase_03 AC 487 ms
43,564 KB
testcase_04 AC 492 ms
43,572 KB
testcase_05 AC 481 ms
43,700 KB
testcase_06 AC 488 ms
43,824 KB
testcase_07 AC 481 ms
44,212 KB
testcase_08 AC 484 ms
43,696 KB
testcase_09 AC 489 ms
43,712 KB
testcase_10 AC 490 ms
44,076 KB
testcase_11 AC 477 ms
43,700 KB
testcase_12 AC 482 ms
43,572 KB
testcase_13 AC 481 ms
43,960 KB
testcase_14 AC 482 ms
44,204 KB
testcase_15 AC 485 ms
43,956 KB
testcase_16 AC 492 ms
44,076 KB
testcase_17 AC 485 ms
43,692 KB
testcase_18 AC 487 ms
43,704 KB
testcase_19 AC 484 ms
44,084 KB
testcase_20 AC 487 ms
44,204 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np
N = int(input())
y = list(map(int, input().split()))
x = [i for i in range(N)]
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 = 0
for i in range(N):
    cost += (y[i] - a*x[i] - b) ** 2
print(b, a)
print(cost)
0