結果

問題 No.609 Noelちゃんと星々
ユーザー YamaKasaYamaKasa
提出日時 2018-09-28 13:25:25
言語 Java21
(openjdk 21)
結果
AC  
実行時間 670 ms / 2,000 ms
コード長 625 bytes
コンパイル時間 2,101 ms
コンパイル使用メモリ 74,872 KB
実行使用メモリ 60,828 KB
最終ジャッジ日時 2024-10-12 04:48:14
合計ジャッジ時間 17,115 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 589 ms
59,612 KB
testcase_01 AC 463 ms
59,448 KB
testcase_02 AC 403 ms
59,324 KB
testcase_03 AC 454 ms
59,928 KB
testcase_04 AC 330 ms
59,280 KB
testcase_05 AC 624 ms
59,592 KB
testcase_06 AC 573 ms
59,576 KB
testcase_07 AC 506 ms
59,532 KB
testcase_08 AC 256 ms
57,980 KB
testcase_09 AC 408 ms
59,504 KB
testcase_10 AC 535 ms
59,464 KB
testcase_11 AC 518 ms
59,528 KB
testcase_12 AC 543 ms
59,620 KB
testcase_13 AC 303 ms
58,704 KB
testcase_14 AC 218 ms
58,228 KB
testcase_15 AC 576 ms
59,520 KB
testcase_16 AC 634 ms
60,428 KB
testcase_17 AC 599 ms
59,480 KB
testcase_18 AC 409 ms
59,304 KB
testcase_19 AC 623 ms
59,172 KB
testcase_20 AC 670 ms
59,208 KB
testcase_21 AC 641 ms
59,776 KB
testcase_22 AC 643 ms
59,980 KB
testcase_23 AC 651 ms
60,828 KB
testcase_24 AC 612 ms
59,392 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		Scanner scan = new Scanner(System.in);
		int N = scan.nextInt();
		int[]Y = new int[N];
		for(int i = 0; i < N; i++) {
			Y[i] = scan.nextInt();
		}
		scan.close();
		Arrays.sort(Y);
		if(N % 2 == 0) {
			int t = (Y[N / 2] + Y[N /2 - 1]) / 2;
			long ans = 0;
			for(int i = 0; i < N; i++) {
				ans += Math.abs(t - Y[i]);
			}
			System.out.println(ans);
		}else {
			long ans = 0;
			int t = Y[N / 2];
			for(int i = 0; i < N; i++) {
				ans += Math.abs(t - Y[i]);
			}
			System.out.println(ans);
		}
	}
}
0