結果

問題 No.609 Noelちゃんと星々
ユーザー tentententen
提出日時 2020-09-05 19:58:16
言語 Java21
(openjdk 21)
結果
AC  
実行時間 640 ms / 2,000 ms
コード長 421 bytes
コンパイル時間 2,089 ms
コンパイル使用メモリ 74,436 KB
実行使用メモリ 49,036 KB
最終ジャッジ日時 2024-05-06 20:03:34
合計ジャッジ時間 16,376 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 543 ms
48,604 KB
testcase_01 AC 418 ms
48,028 KB
testcase_02 AC 359 ms
47,712 KB
testcase_03 AC 384 ms
46,844 KB
testcase_04 AC 306 ms
47,984 KB
testcase_05 AC 587 ms
48,432 KB
testcase_06 AC 516 ms
48,212 KB
testcase_07 AC 495 ms
48,272 KB
testcase_08 AC 271 ms
46,560 KB
testcase_09 AC 413 ms
48,148 KB
testcase_10 AC 468 ms
46,884 KB
testcase_11 AC 481 ms
48,544 KB
testcase_12 AC 550 ms
48,312 KB
testcase_13 AC 283 ms
47,584 KB
testcase_14 AC 218 ms
47,008 KB
testcase_15 AC 538 ms
48,424 KB
testcase_16 AC 589 ms
48,300 KB
testcase_17 AC 560 ms
48,512 KB
testcase_18 AC 337 ms
46,608 KB
testcase_19 AC 536 ms
48,444 KB
testcase_20 AC 575 ms
48,640 KB
testcase_21 AC 632 ms
48,628 KB
testcase_22 AC 604 ms
49,036 KB
testcase_23 AC 640 ms
48,596 KB
testcase_24 AC 584 ms
48,436 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 ans = 0;
    	for (int i = 0; i < n; i++) {
    	    ans += Math.abs(arr[i] - arr[n / 2]);
    	}
    	System.out.println(ans);
	}
}
0