結果

問題 No.731 等差数列がだいすき
ユーザー minamiminami
提出日時 2019-04-04 16:53:48
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 1,032 ms / 1,500 ms
コード長 308 bytes
コンパイル時間 282 ms
コンパイル使用メモリ 12,288 KB
実行使用メモリ 77,884 KB
最終ジャッジ日時 2024-12-26 00:13:21
合計ジャッジ時間 17,873 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,032 ms
44,208 KB
testcase_01 AC 670 ms
44,080 KB
testcase_02 AC 659 ms
43,444 KB
testcase_03 AC 656 ms
43,960 KB
testcase_04 AC 648 ms
43,580 KB
testcase_05 AC 639 ms
43,948 KB
testcase_06 AC 645 ms
43,956 KB
testcase_07 AC 648 ms
44,076 KB
testcase_08 AC 634 ms
43,932 KB
testcase_09 AC 656 ms
43,952 KB
testcase_10 AC 636 ms
44,092 KB
testcase_11 AC 635 ms
43,568 KB
testcase_12 AC 642 ms
43,448 KB
testcase_13 AC 651 ms
43,572 KB
testcase_14 AC 638 ms
44,088 KB
testcase_15 AC 647 ms
43,952 KB
testcase_16 AC 633 ms
43,952 KB
testcase_17 AC 646 ms
43,436 KB
testcase_18 AC 639 ms
43,444 KB
testcase_19 AC 653 ms
44,216 KB
testcase_20 AC 668 ms
77,884 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