結果

問題 No.731 等差数列がだいすき
ユーザー kurimupykurimupy
提出日時 2020-06-15 16:08:03
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 500 ms / 1,500 ms
コード長 357 bytes
コンパイル時間 99 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 44,584 KB
最終ジャッジ日時 2024-07-03 11:27:39
合計ジャッジ時間 11,558 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 466 ms
44,336 KB
testcase_01 AC 465 ms
44,208 KB
testcase_02 AC 459 ms
44,332 KB
testcase_03 AC 462 ms
44,076 KB
testcase_04 AC 463 ms
44,328 KB
testcase_05 AC 462 ms
44,460 KB
testcase_06 AC 471 ms
44,332 KB
testcase_07 AC 472 ms
44,332 KB
testcase_08 AC 460 ms
43,952 KB
testcase_09 AC 463 ms
44,212 KB
testcase_10 AC 500 ms
44,076 KB
testcase_11 AC 477 ms
44,332 KB
testcase_12 AC 474 ms
44,208 KB
testcase_13 AC 465 ms
44,584 KB
testcase_14 AC 463 ms
44,336 KB
testcase_15 AC 462 ms
44,332 KB
testcase_16 AC 464 ms
44,072 KB
testcase_17 AC 462 ms
44,092 KB
testcase_18 AC 457 ms
44,336 KB
testcase_19 AC 466 ms
44,204 KB
testcase_20 AC 461 ms
44,076 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np
INF = 10 ** 10

N = int(input())
X = np.arange(N,dtype = np.int64)
Y = np.array(input().split(),dtype = np.int64)

median_Y = Y.sum()/N
median_X = (N - 1)/2

Sx = ((X - median_X) ** 2).sum()/N
Sxy = ((X - median_X)*(Y - median_Y)).sum()/N
b1 = Sxy/Sx
b0 = median_Y - median_X*b1
cost = ((Y - b0 - b1*X)**2).sum()
print(b0,b1)
print(cost)
0