結果

問題 No.731 等差数列がだいすき
ユーザー rookzenorookzeno
提出日時 2018-09-08 23:03:17
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 542 ms / 1,500 ms
コード長 410 bytes
コンパイル時間 92 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 44,848 KB
最終ジャッジ日時 2024-06-01 05:31:01
合計ジャッジ時間 13,570 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 526 ms
44,588 KB
testcase_01 AC 523 ms
44,836 KB
testcase_02 AC 532 ms
44,716 KB
testcase_03 AC 536 ms
44,844 KB
testcase_04 AC 533 ms
44,328 KB
testcase_05 AC 537 ms
44,204 KB
testcase_06 AC 542 ms
44,720 KB
testcase_07 AC 532 ms
44,076 KB
testcase_08 AC 533 ms
44,588 KB
testcase_09 AC 535 ms
44,332 KB
testcase_10 AC 531 ms
44,204 KB
testcase_11 AC 536 ms
44,720 KB
testcase_12 AC 536 ms
44,208 KB
testcase_13 AC 534 ms
44,216 KB
testcase_14 AC 537 ms
44,584 KB
testcase_15 AC 537 ms
44,724 KB
testcase_16 AC 533 ms
44,212 KB
testcase_17 AC 534 ms
44,848 KB
testcase_18 AC 538 ms
44,716 KB
testcase_19 AC 532 ms
44,712 KB
testcase_20 AC 538 ms
44,204 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np
n = int(input())
a = list(map(int,input().split()))
su1 = (sum(a)*2)
b1 = n*2
d1 = (0+2*(n-1))*n//2
su2 = 0
b2 = 0
d2 = 0
for i in range(n):
  su2 += a[i] * (i)*2
  b2 += (i)*2
  d2 += ((i)**2)*2
kake = np.array([[b1,d1],[b2,d2]])
ans = np.array([su1,su2])
ans = np.dot(np.linalg.inv(kake),ans)
print(ans[0],ans[1])
kota = 0
for i in range(n):
  kota += (a[i]-ans[0]-ans[1]*i)**2
print(kota)
0