結果

問題 No.731 等差数列がだいすき
ユーザー pluto77pluto77
提出日時 2018-09-09 15:26:39
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 490 ms / 1,500 ms
コード長 197 bytes
コンパイル時間 261 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 45,476 KB
最終ジャッジ日時 2024-06-06 01:12:53
合計ジャッジ時間 12,846 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 468 ms
45,344 KB
testcase_01 AC 446 ms
45,460 KB
testcase_02 AC 450 ms
45,340 KB
testcase_03 AC 460 ms
45,332 KB
testcase_04 AC 458 ms
45,336 KB
testcase_05 AC 456 ms
45,332 KB
testcase_06 AC 463 ms
45,468 KB
testcase_07 AC 490 ms
44,952 KB
testcase_08 AC 465 ms
44,952 KB
testcase_09 AC 458 ms
44,996 KB
testcase_10 AC 458 ms
45,340 KB
testcase_11 AC 472 ms
44,952 KB
testcase_12 AC 464 ms
45,476 KB
testcase_13 AC 466 ms
45,076 KB
testcase_14 AC 471 ms
45,208 KB
testcase_15 AC 471 ms
45,084 KB
testcase_16 AC 459 ms
45,216 KB
testcase_17 AC 464 ms
45,344 KB
testcase_18 AC 484 ms
45,336 KB
testcase_19 AC 459 ms
45,088 KB
testcase_20 AC 449 ms
45,460 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#yuki731
import numpy as np

n=int(input())
l=np.array(list(map(float,input().split())))
a,b=np.polyfit(np.array(range(n)),l,1)
print(b,a)
res=0
for i in range(n):
 res+=(l[i]-b-a*i)**2
print(res)
0