結果

問題 No.275 中央値を求めよ
ユーザー yuuki121yuuki121
提出日時 2020-12-24 00:30:40
言語 Java21
(openjdk 21)
結果
AC  
実行時間 87 ms / 1,000 ms
コード長 573 bytes
コンパイル時間 2,234 ms
コンパイル使用メモリ 79,432 KB
実行使用メモリ 38,856 KB
最終ジャッジ日時 2024-09-21 16:38:17
合計ジャッジ時間 6,586 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 66 ms
37,928 KB
testcase_01 AC 66 ms
38,224 KB
testcase_02 AC 67 ms
38,160 KB
testcase_03 AC 68 ms
37,868 KB
testcase_04 AC 66 ms
37,684 KB
testcase_05 AC 71 ms
37,808 KB
testcase_06 AC 67 ms
38,188 KB
testcase_07 AC 79 ms
38,312 KB
testcase_08 AC 66 ms
37,472 KB
testcase_09 AC 69 ms
38,224 KB
testcase_10 AC 67 ms
37,856 KB
testcase_11 AC 67 ms
37,768 KB
testcase_12 AC 67 ms
37,704 KB
testcase_13 AC 66 ms
38,224 KB
testcase_14 AC 67 ms
38,080 KB
testcase_15 AC 87 ms
38,720 KB
testcase_16 AC 79 ms
38,440 KB
testcase_17 AC 82 ms
38,856 KB
testcase_18 AC 68 ms
38,168 KB
testcase_19 AC 73 ms
38,836 KB
testcase_20 AC 76 ms
38,636 KB
testcase_21 AC 77 ms
38,336 KB
testcase_22 AC 85 ms
38,632 KB
testcase_23 AC 71 ms
37,812 KB
testcase_24 AC 69 ms
38,188 KB
testcase_25 AC 78 ms
38,476 KB
testcase_26 AC 85 ms
38,688 KB
testcase_27 AC 76 ms
38,420 KB
testcase_28 AC 69 ms
38,336 KB
testcase_29 AC 77 ms
38,464 KB
testcase_30 AC 68 ms
37,580 KB
testcase_31 AC 84 ms
38,652 KB
testcase_32 AC 73 ms
38,224 KB
testcase_33 AC 76 ms
38,536 KB
testcase_34 AC 68 ms
37,824 KB
testcase_35 AC 84 ms
38,240 KB
testcase_36 AC 69 ms
38,316 KB
testcase_37 AC 68 ms
38,160 KB
testcase_38 AC 71 ms
38,304 KB
testcase_39 AC 69 ms
38,216 KB
testcase_40 AC 85 ms
38,296 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.stream.Stream;

public class Main {
	public static void main(String[] args) throws IOException {
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));

		//入力値読み込み
		int count = Integer.parseInt(br.readLine());
		int[] num = Stream.of(br.readLine().split(" ")).mapToInt(n -> Integer.parseInt(n)).sorted().toArray();

		int di = count / 2;

		System.out.println((count % 2 == 0) ? (num[di - 1] + num[di]) / 2.0 : num[di]);

	}
}
0