結果

問題 No.731 等差数列がだいすき
ユーザー roarisroaris
提出日時 2022-11-26 16:15:21
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 40 ms / 1,500 ms
コード長 246 bytes
コンパイル時間 294 ms
コンパイル使用メモリ 82,540 KB
実行使用メモリ 60,132 KB
最終ジャッジ日時 2024-10-03 00:27:31
合計ジャッジ時間 1,865 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
52,372 KB
testcase_01 AC 32 ms
52,124 KB
testcase_02 AC 32 ms
53,288 KB
testcase_03 AC 33 ms
52,244 KB
testcase_04 AC 37 ms
59,024 KB
testcase_05 AC 34 ms
53,424 KB
testcase_06 AC 38 ms
59,308 KB
testcase_07 AC 38 ms
60,132 KB
testcase_08 AC 35 ms
57,988 KB
testcase_09 AC 37 ms
58,328 KB
testcase_10 AC 40 ms
59,084 KB
testcase_11 AC 32 ms
52,848 KB
testcase_12 AC 36 ms
58,676 KB
testcase_13 AC 37 ms
59,196 KB
testcase_14 AC 37 ms
59,868 KB
testcase_15 AC 37 ms
58,532 KB
testcase_16 AC 36 ms
58,568 KB
testcase_17 AC 37 ms
58,524 KB
testcase_18 AC 35 ms
59,768 KB
testcase_19 AC 35 ms
59,320 KB
testcase_20 AC 35 ms
58,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
a = list(map(int, input().split()))
S = sum(a)
T = sum((i+1)*a[i] for i in range(N))
d = (T-(N+1)/2*S)/(N*(N+1)*(2*N+1)//6-N*(N+1)**2/4)
b = (S-N*(N+1)//2*d)/N
c = sum((b+(i+1)*d-a[i])**2 for i in range(N))
print(b+d, d)
print(c)
0