結果

問題 No.731 等差数列がだいすき
ユーザー はむ吉🐹はむ吉🐹
提出日時 2018-09-07 23:38:49
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 505 ms / 1,500 ms
コード長 389 bytes
コンパイル時間 145 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 45,480 KB
最終ジャッジ日時 2024-11-30 00:20:21
合計ジャッジ時間 12,409 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 498 ms
45,136 KB
testcase_01 AC 501 ms
44,840 KB
testcase_02 AC 500 ms
45,228 KB
testcase_03 AC 501 ms
45,096 KB
testcase_04 AC 501 ms
45,228 KB
testcase_05 AC 502 ms
45,104 KB
testcase_06 AC 499 ms
44,844 KB
testcase_07 AC 501 ms
45,224 KB
testcase_08 AC 503 ms
45,104 KB
testcase_09 AC 501 ms
45,224 KB
testcase_10 AC 500 ms
45,116 KB
testcase_11 AC 499 ms
45,356 KB
testcase_12 AC 504 ms
44,968 KB
testcase_13 AC 505 ms
45,352 KB
testcase_14 AC 500 ms
44,972 KB
testcase_15 AC 498 ms
45,224 KB
testcase_16 AC 501 ms
45,480 KB
testcase_17 AC 501 ms
45,104 KB
testcase_18 AC 500 ms
44,976 KB
testcase_19 AC 502 ms
45,104 KB
testcase_20 AC 502 ms
45,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3

import numpy


def solve(n, qs):
    res = numpy.polyfit(list(range(n)), qs, 1, full=True)
    return res[0][1], res[0][0], res[1][0]
    


def main():
    n = int(input())
    qs = [int(q) for q in input().split()]
    b0, d, cost = solve(n, qs)
    print("{:.12f} {:.12f}".format(b0, d))
    print("{:.12f}".format(cost))


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