結果

問題 No.609 Noelちゃんと星々
ユーザー Daigo HIROOKADaigo HIROOKA
提出日時 2018-06-14 01:31:02
言語 Java21
(openjdk 21)
結果
AC  
実行時間 695 ms / 2,000 ms
コード長 553 bytes
コンパイル時間 3,420 ms
コンパイル使用メモリ 79,728 KB
実行使用メモリ 51,016 KB
最終ジャッジ日時 2024-06-30 14:18:16
合計ジャッジ時間 18,472 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 584 ms
48,628 KB
testcase_01 AC 464 ms
48,116 KB
testcase_02 AC 422 ms
48,260 KB
testcase_03 AC 487 ms
48,388 KB
testcase_04 AC 362 ms
47,692 KB
testcase_05 AC 695 ms
48,664 KB
testcase_06 AC 657 ms
48,596 KB
testcase_07 AC 460 ms
47,548 KB
testcase_08 AC 292 ms
47,668 KB
testcase_09 AC 455 ms
48,500 KB
testcase_10 AC 586 ms
48,300 KB
testcase_11 AC 566 ms
48,560 KB
testcase_12 AC 591 ms
48,616 KB
testcase_13 AC 307 ms
47,472 KB
testcase_14 AC 233 ms
46,656 KB
testcase_15 AC 619 ms
48,852 KB
testcase_16 AC 673 ms
49,024 KB
testcase_17 AC 603 ms
48,600 KB
testcase_18 AC 439 ms
48,176 KB
testcase_19 AC 600 ms
48,708 KB
testcase_20 AC 630 ms
51,016 KB
testcase_21 AC 661 ms
49,156 KB
testcase_22 AC 683 ms
50,792 KB
testcase_23 AC 691 ms
49,012 KB
testcase_24 AC 690 ms
48,768 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class No609{
	public static void main(String[] args){
		Scanner sc = new Scanner(System.in);

		int N = sc.nextInt();
		long[] Y = new long[N];
		for(int i = 0; i < N; i++){
			Y[i] = sc.nextLong();
		}
		Arrays.sort(Y);

		long med;
		if(N%2 != 0){
			med = Y[(N-1)/2];
		}else{
			long med_tmp = Y[N/2-1] + Y[N/2];
			if(med_tmp%2 > 0){
				med = med_tmp/2 + 1;
			}else{
				med = med_tmp/2;
			}
		}

		long diff = 0;
		for(int i = 0; i < N; i++){
			diff += Math.abs(med - Y[i]);
		}
		
		System.out.println(diff);
	}
}
0