結果

問題 No.731 等差数列がだいすき
ユーザー WarToksWarToks
提出日時 2018-09-17 14:16:25
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 460 ms / 1,500 ms
コード長 434 bytes
コンパイル時間 72 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 44,456 KB
最終ジャッジ日時 2024-07-18 07:39:43
合計ジャッジ時間 10,867 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 449 ms
44,076 KB
testcase_01 AC 452 ms
43,944 KB
testcase_02 AC 453 ms
43,944 KB
testcase_03 AC 456 ms
44,204 KB
testcase_04 AC 460 ms
43,816 KB
testcase_05 AC 456 ms
43,956 KB
testcase_06 AC 459 ms
43,924 KB
testcase_07 AC 452 ms
44,204 KB
testcase_08 AC 444 ms
43,944 KB
testcase_09 AC 446 ms
43,960 KB
testcase_10 AC 446 ms
44,456 KB
testcase_11 AC 450 ms
43,944 KB
testcase_12 AC 445 ms
44,212 KB
testcase_13 AC 450 ms
43,956 KB
testcase_14 AC 453 ms
43,944 KB
testcase_15 AC 450 ms
44,076 KB
testcase_16 AC 445 ms
44,324 KB
testcase_17 AC 453 ms
44,336 KB
testcase_18 AC 452 ms
44,328 KB
testcase_19 AC 451 ms
44,080 KB
testcase_20 AC 456 ms
44,212 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np
n = int(input())
Y = []
meany = 0
for x in input().split():
    x = int(x)
    meany += x
    Y.append(x)
meany /= n
meanx = (n - 1) / 2
Y = np.array(Y) - meany
X = np.array(range(n)) - meanx

# print(X)

Sxy = 0
Sx2 = 0
for x, y in zip(X,Y):
    Sxy += x * y
    Sx2 += x ** 2
d = Sxy / Sx2 
b = meany - d * meanx
Y += meany
ai = b
cost = 0
for x in Y:
    cost += (x - ai) ** 2
    ai += d
print(b, d)
print(cost)
0