結果

問題 No.731 等差数列がだいすき
ユーザー H3PO4H3PO4
提出日時 2020-12-21 08:47:45
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,139 ms / 1,500 ms
コード長 188 bytes
コンパイル時間 96 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 81,384 KB
最終ジャッジ日時 2024-09-21 12:41:52
合計ジャッジ時間 15,223 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,139 ms
45,076 KB
testcase_01 AC 513 ms
46,680 KB
testcase_02 AC 516 ms
44,948 KB
testcase_03 AC 516 ms
45,340 KB
testcase_04 AC 521 ms
45,084 KB
testcase_05 AC 513 ms
45,080 KB
testcase_06 AC 523 ms
45,220 KB
testcase_07 AC 524 ms
45,468 KB
testcase_08 AC 522 ms
45,076 KB
testcase_09 AC 522 ms
45,084 KB
testcase_10 AC 523 ms
45,340 KB
testcase_11 AC 530 ms
45,196 KB
testcase_12 AC 519 ms
45,212 KB
testcase_13 AC 521 ms
46,676 KB
testcase_14 AC 520 ms
44,956 KB
testcase_15 AC 522 ms
45,340 KB
testcase_16 AC 522 ms
45,472 KB
testcase_17 AC 517 ms
45,340 KB
testcase_18 AC 518 ms
45,208 KB
testcase_19 AC 521 ms
45,592 KB
testcase_20 AC 522 ms
81,384 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np

N = int(input())
X = np.arange(N)
A = np.array(tuple(map(int, input().split())))

res = np.polyfit(X, A, 1, full=True)
d, b = res[0]
c = res[1][0]
print(b, d)
print(c)
0