結果

問題 No.731 等差数列がだいすき
ユーザー 💕💖💞💕💖💞
提出日時 2018-09-12 23:47:14
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 541 ms / 1,500 ms
コード長 270 bytes
コンパイル時間 87 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 47,072 KB
最終ジャッジ日時 2024-06-28 02:29:35
合計ジャッジ時間 14,244 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 537 ms
46,932 KB
testcase_01 AC 527 ms
46,804 KB
testcase_02 AC 535 ms
45,216 KB
testcase_03 AC 525 ms
45,476 KB
testcase_04 AC 527 ms
44,968 KB
testcase_05 AC 530 ms
45,344 KB
testcase_06 AC 527 ms
45,480 KB
testcase_07 AC 541 ms
45,096 KB
testcase_08 AC 532 ms
47,072 KB
testcase_09 AC 534 ms
45,344 KB
testcase_10 AC 531 ms
45,216 KB
testcase_11 AC 530 ms
45,736 KB
testcase_12 AC 523 ms
45,224 KB
testcase_13 AC 532 ms
45,476 KB
testcase_14 AC 530 ms
45,472 KB
testcase_15 AC 532 ms
46,812 KB
testcase_16 AC 521 ms
45,088 KB
testcase_17 AC 528 ms
45,484 KB
testcase_18 AC 533 ms
45,212 KB
testcase_19 AC 529 ms
45,480 KB
testcase_20 AC 532 ms
45,216 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np

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

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