結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 482 ms
45,104 KB
testcase_01 AC 449 ms
45,224 KB
testcase_02 AC 455 ms
45,356 KB
testcase_03 AC 450 ms
45,352 KB
testcase_04 AC 463 ms
45,104 KB
testcase_05 AC 450 ms
45,096 KB
testcase_06 AC 453 ms
45,096 KB
testcase_07 AC 446 ms
45,224 KB
testcase_08 AC 452 ms
45,224 KB
testcase_09 AC 469 ms
44,968 KB
testcase_10 AC 457 ms
45,220 KB
testcase_11 AC 449 ms
45,220 KB
testcase_12 AC 464 ms
44,968 KB
testcase_13 AC 458 ms
44,968 KB
testcase_14 AC 471 ms
44,972 KB
testcase_15 AC 458 ms
45,352 KB
testcase_16 AC 452 ms
45,100 KB
testcase_17 AC 445 ms
45,228 KB
testcase_18 AC 437 ms
45,232 KB
testcase_19 AC 445 ms
45,220 KB
testcase_20 AC 446 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