結果

問題 No.837 Noelちゃんと星々2
ユーザー 37zigen37zigen
提出日時 2019-06-15 02:13:17
言語 Java21
(openjdk 21)
結果
AC  
実行時間 625 ms / 2,000 ms
コード長 1,061 bytes
コンパイル時間 3,352 ms
コンパイル使用メモリ 77,520 KB
実行使用メモリ 51,956 KB
最終ジャッジ日時 2024-06-11 14:19:53
合計ジャッジ時間 12,451 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 617 ms
48,952 KB
testcase_01 AC 622 ms
48,608 KB
testcase_02 AC 567 ms
49,216 KB
testcase_03 AC 608 ms
50,812 KB
testcase_04 AC 530 ms
51,956 KB
testcase_05 AC 517 ms
48,900 KB
testcase_06 AC 625 ms
49,016 KB
testcase_07 AC 618 ms
50,684 KB
testcase_08 AC 624 ms
48,788 KB
testcase_09 AC 131 ms
41,544 KB
testcase_10 AC 122 ms
41,236 KB
testcase_11 AC 112 ms
39,852 KB
testcase_12 AC 117 ms
41,204 KB
testcase_13 AC 110 ms
40,308 KB
testcase_14 AC 120 ms
41,260 KB
testcase_15 AC 119 ms
41,784 KB
testcase_16 AC 98 ms
39,832 KB
testcase_17 AC 105 ms
40,396 KB
testcase_18 AC 109 ms
41,364 KB
testcase_19 AC 110 ms
39,836 KB
testcase_20 AC 120 ms
41,392 KB
testcase_21 AC 114 ms
41,472 KB
testcase_22 AC 122 ms
41,052 KB
testcase_23 AC 112 ms
40,860 KB
testcase_24 AC 118 ms
41,220 KB
testcase_25 AC 108 ms
39,904 KB
testcase_26 AC 112 ms
41,024 KB
testcase_27 AC 109 ms
40,916 KB
testcase_28 AC 102 ms
40,396 KB
testcase_29 AC 106 ms
40,080 KB
testcase_30 AC 107 ms
41,168 KB
testcase_31 AC 108 ms
40,980 KB
testcase_32 AC 103 ms
40,324 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.HashSet;
import java.util.Scanner;

class Main {
	public static void main(String[] args) {
		new Main().run();
	}

	void run() {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		long[] Y = new long[n];
		boolean f = true;
		for (int i = 0; i < n; ++i) {
			Y[i] = sc.nextLong();
			f &= Y[i] == Y[0];
		}
		if (f) {
			System.out.println(1);
			return;
		}
		Arrays.sort(Y);
		long[] sum = new long[n];
		for (int i = 0; i < n; ++i) {
			sum[i] = (i > 0 ? sum[i - 1] : 0) + Y[i];
		}
		long ans = Long.MAX_VALUE / 3;
		for (int i = 1; i  < n; ++i) {
			// [0, i)
			// [i, n)
			long cur = 0;

			int m = i / 2;
			cur += Y[m] * (m + 1) - sum[m];
			cur += (sum[i - 1] - sum[m]) - Y[m] * (i - 1 - m);

			m = (n - i) / 2;
			cur += Y[i + m] * (m + 1) - (sum[i + m] - sum[i - 1]);
			cur += (sum[n - 1] - sum[i + m]) - Y[i + m] * ((n - 1) - (i + m));


			ans = Math.min(ans, cur);
		}
		System.out.println(ans);
	}

	void tr(Object... objects) {
		System.out.println(Arrays.deepToString(objects));
	}
}
0