結果

問題 No.731 等差数列がだいすき
ユーザー YamaKasaYamaKasa
提出日時 2018-09-07 23:58:32
言語 Java21
(openjdk 21)
結果
AC  
実行時間 244 ms / 1,500 ms
コード長 1,189 bytes
コンパイル時間 2,535 ms
コンパイル使用メモリ 79,432 KB
実行使用メモリ 45,316 KB
最終ジャッジ日時 2024-05-07 09:52:32
合計ジャッジ時間 7,905 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 173 ms
42,736 KB
testcase_01 AC 176 ms
42,488 KB
testcase_02 AC 177 ms
42,584 KB
testcase_03 AC 192 ms
42,864 KB
testcase_04 AC 232 ms
44,712 KB
testcase_05 AC 189 ms
42,872 KB
testcase_06 AC 238 ms
44,424 KB
testcase_07 AC 210 ms
43,004 KB
testcase_08 AC 232 ms
44,440 KB
testcase_09 AC 222 ms
43,120 KB
testcase_10 AC 235 ms
44,800 KB
testcase_11 AC 177 ms
42,752 KB
testcase_12 AC 204 ms
43,084 KB
testcase_13 AC 228 ms
44,064 KB
testcase_14 AC 237 ms
43,796 KB
testcase_15 AC 236 ms
44,936 KB
testcase_16 AC 216 ms
44,264 KB
testcase_17 AC 237 ms
45,312 KB
testcase_18 AC 237 ms
44,920 KB
testcase_19 AC 244 ms
45,248 KB
testcase_20 AC 226 ms
45,316 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		Scanner scan = new Scanner(System.in);
		double N = scan.nextInt();
		double[]a = new double[(int)N];
		for(int i = 0; i < N; i++) {
			a[i] = scan.nextLong();
		}
		scan.close();
		double sum1 = 0;
		double sum2 = 0;
		for(int i = 0; i < N - 1; i++) {
			sum1 += a[0] - a[i + 1];
			sum2 += (i + 1)  * (a[0] - a[i + 1]);
		}
		double A = 2 * N;
		double B = N * (N - 1);
		double p = -2 * sum1;
		double C = 3 * N * (N - 1);
		double D = N * (N - 1) * (2 * N - 1);
		double q = -6 * sum2;
		double t = A * D - B * C;
		double x = (p * D - B * q) / t;
		double y = (A * q - p * C) / t;
//		System.out.println(A + " " + B + " " + C + " " + D);
//		System.out.println(p + " " + q);
		double b1 = a[0] + x;
		double cost = 0;
		for(int i = 0; i < N; i++) {
			double k = a[0] + x + i * y - a[i];
			k *= k;
			//BigDecimal bd = new BigDecimal(k);
			//BigDecimal bd2 = bd.setScale(10, BigDecimal.ROUND_HALF_UP);
			//double d = Double.parseDouble(bd2.toString());
			//System.out.println(d);
			cost += k;
		}
		System.out.println(b1 + " " + y);
		System.out.println(String.format("%.8f", cost));
	}
}
0