結果

問題 No.837 Noelちゃんと星々2
ユーザー 37zigen37zigen
提出日時 2019-06-15 00:17:05
言語 Java
(openjdk 23)
結果
WA  
実行時間 -
コード長 1,009 bytes
コンパイル時間 3,324 ms
コンパイル使用メモリ 77,700 KB
実行使用メモリ 58,964 KB
最終ジャッジ日時 2024-11-15 17:06:42
合計ジャッジ時間 19,471 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 149 ms
41,252 KB
testcase_10 AC 138 ms
41,256 KB
testcase_11 AC 141 ms
41,092 KB
testcase_12 AC 134 ms
41,208 KB
testcase_13 AC 136 ms
41,092 KB
testcase_14 AC 141 ms
41,344 KB
testcase_15 AC 143 ms
41,264 KB
testcase_16 AC 128 ms
41,124 KB
testcase_17 AC 140 ms
41,448 KB
testcase_18 AC 133 ms
41,224 KB
testcase_19 AC 140 ms
41,432 KB
testcase_20 AC 142 ms
41,388 KB
testcase_21 AC 147 ms
41,216 KB
testcase_22 AC 146 ms
41,300 KB
testcase_23 AC 142 ms
41,268 KB
testcase_24 RE -
testcase_25 AC 132 ms
41,176 KB
testcase_26 AC 131 ms
41,308 KB
testcase_27 AC 132 ms
41,196 KB
testcase_28 AC 133 ms
41,116 KB
testcase_29 RE -
testcase_30 AC 130 ms
41,004 KB
testcase_31 AC 130 ms
41,216 KB
testcase_32 AC 132 ms
41,340 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 ans = Long.MAX_VALUE / 3;
		for (int d1 = -10; d1 <= 10; ++d1) {
			for (int d2 = -10; d2 <= 10; ++d2) {
				if (n / 3 + d1 < 0 || n * 2 / 3 + d2 < 0 || n / 3 + d1 >= n || n * 2 / 3 + d2 >= n
						|| Y[n / 3 + d1] == Y[n / 3 * 2 + d2])
					continue;
				long ans_tmp = 0;
				for (int i = 0; i < n; ++i) {
					ans_tmp += Math.min(Math.abs(Y[i] - Y[n / 3 + d1]), Math.abs(Y[i] - Y[n * 2 / 3 + d2]));
				}
				ans = Math.min(ans, ans_tmp);
			}
		}
		System.out.println(ans);
	}

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