結果

問題 No.731 等差数列がだいすき
ユーザー minamiminami
提出日時 2019-04-04 17:07:15
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 568 ms / 1,500 ms
コード長 202 bytes
コンパイル時間 277 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 43,792 KB
最終ジャッジ日時 2024-06-07 16:56:52
合計ジャッジ時間 14,994 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 568 ms
43,536 KB
testcase_01 AC 525 ms
43,408 KB
testcase_02 AC 525 ms
43,412 KB
testcase_03 AC 527 ms
43,412 KB
testcase_04 AC 536 ms
43,792 KB
testcase_05 AC 527 ms
43,404 KB
testcase_06 AC 521 ms
43,668 KB
testcase_07 AC 526 ms
43,788 KB
testcase_08 AC 524 ms
43,412 KB
testcase_09 AC 526 ms
43,792 KB
testcase_10 AC 519 ms
43,776 KB
testcase_11 AC 521 ms
43,412 KB
testcase_12 AC 525 ms
43,792 KB
testcase_13 AC 529 ms
43,524 KB
testcase_14 AC 525 ms
43,404 KB
testcase_15 AC 525 ms
43,788 KB
testcase_16 AC 527 ms
43,400 KB
testcase_17 AC 522 ms
43,792 KB
testcase_18 AC 520 ms
43,408 KB
testcase_19 AC 529 ms
43,660 KB
testcase_20 AC 529 ms
43,416 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np
N = int(input())
y = list(map(int, input().split()))
x = [i for i in range(N)]

a, b = np.polyfit(x, y, 1)
c = sum((_y - a*_x - b) ** 2 for _x, _y in zip(x, y))

print(b, a)
print(c)
0