結果

問題 No.609 Noelちゃんと星々
ユーザー htensaihtensai
提出日時 2019-11-14 13:27:49
言語 Java21
(openjdk 21)
結果
AC  
実行時間 732 ms / 2,000 ms
コード長 405 bytes
コンパイル時間 2,276 ms
コンパイル使用メモリ 74,328 KB
実行使用メモリ 50,244 KB
最終ジャッジ日時 2024-09-21 21:24:18
合計ジャッジ時間 19,287 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 651 ms
48,332 KB
testcase_01 AC 509 ms
48,360 KB
testcase_02 AC 435 ms
47,716 KB
testcase_03 AC 513 ms
47,972 KB
testcase_04 AC 381 ms
47,784 KB
testcase_05 AC 706 ms
48,524 KB
testcase_06 AC 677 ms
48,336 KB
testcase_07 AC 566 ms
47,812 KB
testcase_08 AC 299 ms
47,676 KB
testcase_09 AC 463 ms
48,164 KB
testcase_10 AC 633 ms
48,452 KB
testcase_11 AC 604 ms
48,392 KB
testcase_12 AC 622 ms
48,396 KB
testcase_13 AC 333 ms
47,580 KB
testcase_14 AC 253 ms
46,416 KB
testcase_15 AC 654 ms
48,188 KB
testcase_16 AC 722 ms
49,004 KB
testcase_17 AC 633 ms
48,452 KB
testcase_18 AC 463 ms
48,012 KB
testcase_19 AC 636 ms
48,144 KB
testcase_20 AC 703 ms
50,244 KB
testcase_21 AC 723 ms
48,276 KB
testcase_22 AC 732 ms
48,772 KB
testcase_23 AC 725 ms
48,480 KB
testcase_24 AC 732 ms
48,372 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	public static void main (String[] args) {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		int[] arr = new int[n];
		for (int i = 0; i < n; i++) {
		    arr[i] = sc.nextInt();
		}
		Arrays.sort(arr);
		long total = 0;
		int m = arr[n / 2];
		for (int i = 0; i < n; i++) {
		    total += Math.abs(arr[i] - m);
		}
		System.out.println(total);
	}
}
0