結果

問題 No.731 等差数列がだいすき
ユーザー GrenacheGrenache
提出日時 2018-09-17 12:04:47
言語 Java21
(openjdk 21)
結果
AC  
実行時間 188 ms / 1,500 ms
コード長 1,253 bytes
コンパイル時間 3,359 ms
コンパイル使用メモリ 78,776 KB
実行使用メモリ 43,228 KB
最終ジャッジ日時 2024-07-18 07:37:53
合計ジャッジ時間 7,601 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 124 ms
41,892 KB
testcase_01 AC 109 ms
41,288 KB
testcase_02 AC 122 ms
41,632 KB
testcase_03 AC 135 ms
41,672 KB
testcase_04 AC 172 ms
42,516 KB
testcase_05 AC 139 ms
41,792 KB
testcase_06 AC 169 ms
42,292 KB
testcase_07 AC 178 ms
42,124 KB
testcase_08 AC 158 ms
42,292 KB
testcase_09 AC 167 ms
42,388 KB
testcase_10 AC 171 ms
42,640 KB
testcase_11 AC 126 ms
41,632 KB
testcase_12 AC 162 ms
42,112 KB
testcase_13 AC 169 ms
42,508 KB
testcase_14 AC 165 ms
42,116 KB
testcase_15 AC 170 ms
42,448 KB
testcase_16 AC 170 ms
41,960 KB
testcase_17 AC 188 ms
42,636 KB
testcase_18 AC 188 ms
43,228 KB
testcase_19 AC 178 ms
42,680 KB
testcase_20 AC 175 ms
42,732 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;


public class Main_yukicoder731 {

	private static Scanner sc;
	private static Printer pr;

	private static void solve() {
		int n = sc.nextInt();

		int[] a = new int[n];
		for (int i = 0; i < n; i++) {
			a[i] = sc.nextInt();
		}

		long aa = 0, bb = 0, cc = 0, dd = 0, ee = 0, ff = 0;
		for (int i = 0; i < n; i++) {
			aa += i * i;
			bb += i;
			cc += i;
			dd += 1;
			ee += i * a[i];
			ff += a[i];
		}
		
		if (aa * dd - bb * cc == 0) {
			
		} else {
			double xx = (double)(ee * dd - bb * ff) / (aa * dd - bb * cc);
			double yy = (double)(aa * ff - cc * ee) / (aa * dd - bb * cc);
			
			double cost = 0;
			for (int i = 0; i < n; i++) {
				double tmp = xx * i + yy - a[i];
				cost += tmp * tmp;
			}
			
			pr.printf("%.7f %.7f\n", yy, xx);
			pr.printf("%.7f\n", cost);
		}
	}

	// ---------------------------------------------------
	public static void main(String[] args) {
		sc = new Scanner(INPUT == null ? System.in : new ByteArrayInputStream(INPUT.getBytes()));
		pr = new Printer(System.out);

		solve();

//		pr.close();
		pr.flush();
//		sc.close();
	}

	static String INPUT = null;

	private static class Printer extends PrintWriter {
		Printer(OutputStream out) {
			super(out);
		}
	}
}
0