結果

問題 No.731 等差数列がだいすき
ユーザー H3PO4H3PO4
提出日時 2020-12-21 09:16:27
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 540 ms / 1,500 ms
コード長 118 bytes
コンパイル時間 214 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 47,292 KB
最終ジャッジ日時 2024-09-21 12:42:07
合計ジャッジ時間 14,610 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 517 ms
45,076 KB
testcase_01 AC 518 ms
47,044 KB
testcase_02 AC 533 ms
46,792 KB
testcase_03 AC 524 ms
46,788 KB
testcase_04 AC 528 ms
44,936 KB
testcase_05 AC 530 ms
45,076 KB
testcase_06 AC 527 ms
45,076 KB
testcase_07 AC 536 ms
47,076 KB
testcase_08 AC 530 ms
45,184 KB
testcase_09 AC 528 ms
44,936 KB
testcase_10 AC 529 ms
45,208 KB
testcase_11 AC 529 ms
45,192 KB
testcase_12 AC 535 ms
47,184 KB
testcase_13 AC 540 ms
47,284 KB
testcase_14 AC 537 ms
47,068 KB
testcase_15 AC 534 ms
46,800 KB
testcase_16 AC 529 ms
45,344 KB
testcase_17 AC 531 ms
45,064 KB
testcase_18 AC 529 ms
45,072 KB
testcase_19 AC 537 ms
47,292 KB
testcase_20 AC 527 ms
45,328 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy;p,q,*_=numpy.polyfit(range(int(input())),[*map(int,input().split())],1,full=1);print(p[1],p[0],'\n',q[0])
0