結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 657 ms
48,408 KB
testcase_01 AC 513 ms
48,276 KB
testcase_02 AC 446 ms
48,104 KB
testcase_03 AC 487 ms
48,184 KB
testcase_04 AC 345 ms
46,668 KB
testcase_05 AC 719 ms
48,584 KB
testcase_06 AC 690 ms
48,812 KB
testcase_07 AC 555 ms
48,388 KB
testcase_08 AC 290 ms
47,600 KB
testcase_09 AC 450 ms
47,956 KB
testcase_10 AC 593 ms
48,296 KB
testcase_11 AC 575 ms
49,448 KB
testcase_12 AC 636 ms
48,552 KB
testcase_13 AC 328 ms
47,480 KB
testcase_14 AC 251 ms
46,424 KB
testcase_15 AC 630 ms
48,548 KB
testcase_16 AC 665 ms
50,344 KB
testcase_17 AC 609 ms
48,476 KB
testcase_18 AC 438 ms
48,492 KB
testcase_19 AC 661 ms
48,676 KB
testcase_20 AC 678 ms
50,888 KB
testcase_21 AC 685 ms
48,712 KB
testcase_22 AC 667 ms
50,616 KB
testcase_23 AC 700 ms
50,276 KB
testcase_24 AC 733 ms
48,348 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