結果

問題 No.609 Noelちゃんと星々
ユーザー jp_stejp_ste
提出日時 2019-08-22 21:44:55
言語 Java21
(openjdk 21)
結果
AC  
実行時間 737 ms / 2,000 ms
コード長 661 bytes
コンパイル時間 2,337 ms
コンパイル使用メモリ 74,740 KB
実行使用メモリ 61,692 KB
最終ジャッジ日時 2024-10-12 23:02:19
合計ジャッジ時間 18,985 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 633 ms
59,432 KB
testcase_01 AC 504 ms
59,128 KB
testcase_02 AC 428 ms
59,348 KB
testcase_03 AC 487 ms
59,352 KB
testcase_04 AC 375 ms
59,244 KB
testcase_05 AC 715 ms
59,540 KB
testcase_06 AC 678 ms
59,148 KB
testcase_07 AC 573 ms
59,500 KB
testcase_08 AC 295 ms
58,732 KB
testcase_09 AC 457 ms
59,244 KB
testcase_10 AC 583 ms
59,560 KB
testcase_11 AC 567 ms
59,668 KB
testcase_12 AC 616 ms
59,424 KB
testcase_13 AC 329 ms
58,952 KB
testcase_14 AC 247 ms
58,312 KB
testcase_15 AC 671 ms
59,540 KB
testcase_16 AC 719 ms
59,652 KB
testcase_17 AC 637 ms
59,716 KB
testcase_18 AC 433 ms
59,420 KB
testcase_19 AC 669 ms
59,388 KB
testcase_20 AC 697 ms
61,472 KB
testcase_21 AC 729 ms
59,644 KB
testcase_22 AC 692 ms
61,692 KB
testcase_23 AC 726 ms
61,464 KB
testcase_24 AC 737 ms
59,456 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
	public static void main(String[] args) {
		try (Scanner scan = new Scanner(System.in)) {
			int n = scan.nextInt();
			long[] y = new long[n];
			for(int i=0; i<n; i++) {
				y[i] = scan.nextLong();
			}
			Arrays.sort(y);
			long sum = 0;
			if(n % 2 == 1) {
			    sum = calcSum(y, n/2);
			} else {
			    sum = Math.min(calcSum(y, n/2) , calcSum(y, n/2-1));
			}
			System.out.println(sum);
		}
	}
	
	private static long calcSum(long[] y, int index) {
		long sum = 0;
		long base = y[index];
		for(int i=0; i<y.length; i++) {
		    sum += Math.abs(y[i] - base);
		}
		return sum;
	}
}
0