結果

問題 No.731 等差数列がだいすき
ユーザー hedwig100hedwig100
提出日時 2020-04-28 17:42:35
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 495 ms / 1,500 ms
コード長 455 bytes
コンパイル時間 157 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 44,468 KB
最終ジャッジ日時 2024-05-03 20:55:53
合計ジャッジ時間 13,607 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 479 ms
44,204 KB
testcase_01 AC 479 ms
43,944 KB
testcase_02 AC 476 ms
43,952 KB
testcase_03 AC 474 ms
44,072 KB
testcase_04 AC 476 ms
43,944 KB
testcase_05 AC 475 ms
44,328 KB
testcase_06 AC 477 ms
44,336 KB
testcase_07 AC 483 ms
43,948 KB
testcase_08 AC 477 ms
44,460 KB
testcase_09 AC 495 ms
43,956 KB
testcase_10 AC 478 ms
43,960 KB
testcase_11 AC 476 ms
44,324 KB
testcase_12 AC 482 ms
44,324 KB
testcase_13 AC 476 ms
43,944 KB
testcase_14 AC 471 ms
44,324 KB
testcase_15 AC 478 ms
44,328 KB
testcase_16 AC 477 ms
44,468 KB
testcase_17 AC 478 ms
44,212 KB
testcase_18 AC 471 ms
44,336 KB
testcase_19 AC 475 ms
43,952 KB
testcase_20 AC 472 ms
44,328 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np
INF = 10 ** 10

def main():
    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)

if __name__ == '__main__':
    main()
0