結果

問題 No.837 Noelちゃんと星々2
ユーザー tentententen
提出日時 2021-03-16 11:04:41
言語 Java21
(openjdk 21)
結果
AC  
実行時間 285 ms / 2,000 ms
コード長 1,178 bytes
コンパイル時間 2,113 ms
コンパイル使用メモリ 77,884 KB
実行使用メモリ 52,584 KB
最終ジャッジ日時 2024-06-11 14:30:43
合計ジャッジ時間 7,074 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 263 ms
52,232 KB
testcase_01 AC 262 ms
51,940 KB
testcase_02 AC 285 ms
52,092 KB
testcase_03 AC 272 ms
52,124 KB
testcase_04 AC 253 ms
52,280 KB
testcase_05 AC 257 ms
51,948 KB
testcase_06 AC 275 ms
52,112 KB
testcase_07 AC 250 ms
52,584 KB
testcase_08 AC 259 ms
52,428 KB
testcase_09 AC 46 ms
37,172 KB
testcase_10 AC 46 ms
37,116 KB
testcase_11 AC 51 ms
36,936 KB
testcase_12 AC 47 ms
36,636 KB
testcase_13 AC 45 ms
37,116 KB
testcase_14 AC 45 ms
36,888 KB
testcase_15 AC 45 ms
37,084 KB
testcase_16 AC 48 ms
36,924 KB
testcase_17 AC 46 ms
36,636 KB
testcase_18 AC 47 ms
37,124 KB
testcase_19 AC 46 ms
37,148 KB
testcase_20 AC 46 ms
36,764 KB
testcase_21 AC 46 ms
36,920 KB
testcase_22 AC 46 ms
37,188 KB
testcase_23 AC 47 ms
36,860 KB
testcase_24 AC 48 ms
37,016 KB
testcase_25 AC 46 ms
36,648 KB
testcase_26 AC 46 ms
36,832 KB
testcase_27 AC 49 ms
37,048 KB
testcase_28 AC 46 ms
37,172 KB
testcase_29 AC 46 ms
36,988 KB
testcase_30 AC 47 ms
37,108 KB
testcase_31 AC 48 ms
37,188 KB
testcase_32 AC 45 ms
36,620 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
	public static void main (String[] args) throws Exception {
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
		int n = Integer.parseInt(br.readLine());
		String[] line = br.readLine().split(" ", n);
		int[] positions = new int[n];
		for (int i = 0; i < n; i++) {
		    positions[i] = Integer.parseInt(line[i]);
		}
		Arrays.sort(positions);
		if (positions[0] == positions[n - 1]) {
		    System.out.println(1);
		    return;
		}
		long[] sums = new long[n];
		sums[0] = positions[0];
		for (int i = 1; i < n; i++) {
		    sums[i] = sums[i - 1] + positions[i];
		}
		long min = Long.MAX_VALUE;
		for (int i = 1; i < n; i++) {
		    int leftc = (i - 1) / 2;
		    long tmp = positions[leftc] * (long)(leftc + 1) - sums[leftc];
		    tmp += sums[i - 1] - sums[leftc] - positions[leftc] * (long)(i - leftc - 1);
		    int rightc = (n - 1 + i) / 2;
		    tmp += positions[rightc] *(long)(rightc - i + 1) - (sums[rightc] - sums[i - 1]);
		    tmp += sums[n - 1] - sums[rightc] - positions[rightc] * (long)(n - 1 - rightc);
		    min = Math.min(min, tmp);
		}
		System.out.println(min);
   }
   
}
0