結果

問題 No.609 Noelちゃんと星々
ユーザー Tsukasa_TypeTsukasa_Type
提出日時 2018-02-28 23:14:28
言語 Java21
(openjdk 21)
結果
AC  
実行時間 676 ms / 2,000 ms
コード長 484 bytes
コンパイル時間 2,050 ms
コンパイル使用メモリ 75,136 KB
実行使用メモリ 49,492 KB
最終ジャッジ日時 2024-06-02 06:25:24
合計ジャッジ時間 15,991 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 587 ms
49,288 KB
testcase_01 AC 393 ms
48,600 KB
testcase_02 AC 318 ms
48,488 KB
testcase_03 AC 369 ms
48,792 KB
testcase_04 AC 265 ms
47,936 KB
testcase_05 AC 654 ms
49,376 KB
testcase_06 AC 462 ms
48,352 KB
testcase_07 AC 422 ms
49,176 KB
testcase_08 AC 252 ms
47,212 KB
testcase_09 AC 352 ms
48,764 KB
testcase_10 AC 419 ms
48,148 KB
testcase_11 AC 454 ms
49,212 KB
testcase_12 AC 564 ms
48,972 KB
testcase_13 AC 261 ms
47,528 KB
testcase_14 AC 202 ms
44,504 KB
testcase_15 AC 450 ms
48,404 KB
testcase_16 AC 614 ms
49,060 KB
testcase_17 AC 573 ms
49,048 KB
testcase_18 AC 306 ms
46,500 KB
testcase_19 AC 483 ms
48,796 KB
testcase_20 AC 676 ms
49,492 KB
testcase_21 AC 588 ms
48,940 KB
testcase_22 AC 632 ms
49,244 KB
testcase_23 AC 616 ms
48,824 KB
testcase_24 AC 595 ms
49,092 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import static java.lang.System.*;

public class Main {
	static Scanner sc = new Scanner(System.in);
	public static void main(String[] args) {
		int n = sc.nextInt();
		int[] ar = new int[n];
		for (int i=0; i<n; i++) {
			ar[i] = Integer.parseInt(sc.next());
		}
		Arrays.sort(ar);
		long a = 0;
		if (n%2==0) {a = (ar[n/2]+ar[(n-1)/2])/2;}
		else {a = ar[n/2];}
		long ans = 0;
		for (int i=0; i<n; i++) {
			ans += Math.abs(ar[i]-a);
		}
		out.println(ans);
	}
}
0