結果

問題 No.731 等差数列がだいすき
ユーザー takeya_okinotakeya_okino
提出日時 2019-09-14 10:19:32
言語 Java21
(openjdk 21)
結果
AC  
実行時間 186 ms / 1,500 ms
コード長 775 bytes
コンパイル時間 1,962 ms
コンパイル使用メモリ 78,848 KB
実行使用メモリ 44,968 KB
最終ジャッジ日時 2024-07-05 17:21:04
合計ジャッジ時間 6,452 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 120 ms
42,104 KB
testcase_01 AC 137 ms
42,492 KB
testcase_02 AC 143 ms
42,448 KB
testcase_03 AC 139 ms
41,836 KB
testcase_04 AC 159 ms
42,684 KB
testcase_05 AC 138 ms
41,580 KB
testcase_06 AC 182 ms
44,528 KB
testcase_07 AC 155 ms
42,488 KB
testcase_08 AC 175 ms
42,800 KB
testcase_09 AC 176 ms
43,432 KB
testcase_10 AC 180 ms
42,688 KB
testcase_11 AC 124 ms
42,356 KB
testcase_12 AC 168 ms
42,924 KB
testcase_13 AC 173 ms
42,432 KB
testcase_14 AC 174 ms
42,624 KB
testcase_15 AC 178 ms
43,112 KB
testcase_16 AC 150 ms
42,440 KB
testcase_17 AC 181 ms
43,336 KB
testcase_18 AC 186 ms
43,692 KB
testcase_19 AC 184 ms
43,272 KB
testcase_20 AC 184 ms
44,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
  public static void main(String[] args) {
    Scanner sc = new Scanner(System.in);
    int n = sc.nextInt();
    long[] a = new long[n];
    for(int i = 0; i < n; i++) {
      a[i] = sc.nextLong();
    }
    long xy = 0;
    long x = 0;
    long y = 0;
    long x2 = 0;
    for(int i = 0; i < n; i++) {
      xy += (i * a[i]);
      x += i;
      y += a[i];
      x2 += (i * i);
    }
    double A = (double)(n * xy - x * y) / (double)(n * x2 - x * x);
    double B = (double)(x2 * y - xy * x) / (double)(n * x2 - x * x);
    double c = 0;
    for(int i = 0; i < n; i++) {
      double t = A * (double)i + B;
      c += ((double)((a[i] - t) * (a[i] - t))); 
    }
    System.out.println(B + " " + A);
    System.out.println(c);
  }
}
0