結果

問題 No.275 中央値を求めよ
ユーザー gomagoma
提出日時 2017-09-19 22:10:39
言語 Java21
(openjdk 21)
結果
AC  
実行時間 182 ms / 1,000 ms
コード長 442 bytes
コンパイル時間 2,108 ms
コンパイル使用メモリ 74,244 KB
実行使用メモリ 43,228 KB
最終ジャッジ日時 2024-06-25 00:40:23
合計ジャッジ時間 9,413 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 122 ms
41,600 KB
testcase_01 AC 123 ms
41,568 KB
testcase_02 AC 133 ms
41,800 KB
testcase_03 AC 121 ms
41,372 KB
testcase_04 AC 119 ms
40,260 KB
testcase_05 AC 121 ms
41,540 KB
testcase_06 AC 130 ms
41,448 KB
testcase_07 AC 170 ms
41,988 KB
testcase_08 AC 136 ms
41,664 KB
testcase_09 AC 142 ms
41,908 KB
testcase_10 AC 136 ms
41,920 KB
testcase_11 AC 123 ms
41,508 KB
testcase_12 AC 125 ms
41,592 KB
testcase_13 AC 112 ms
40,180 KB
testcase_14 AC 123 ms
41,872 KB
testcase_15 AC 182 ms
42,576 KB
testcase_16 AC 176 ms
42,844 KB
testcase_17 AC 180 ms
42,824 KB
testcase_18 AC 152 ms
42,024 KB
testcase_19 AC 171 ms
42,404 KB
testcase_20 AC 172 ms
42,304 KB
testcase_21 AC 165 ms
42,044 KB
testcase_22 AC 169 ms
42,400 KB
testcase_23 AC 158 ms
42,268 KB
testcase_24 AC 149 ms
41,768 KB
testcase_25 AC 175 ms
42,972 KB
testcase_26 AC 178 ms
42,588 KB
testcase_27 AC 171 ms
42,588 KB
testcase_28 AC 132 ms
41,912 KB
testcase_29 AC 165 ms
42,364 KB
testcase_30 AC 131 ms
41,588 KB
testcase_31 AC 173 ms
42,728 KB
testcase_32 AC 137 ms
41,760 KB
testcase_33 AC 170 ms
42,440 KB
testcase_34 AC 131 ms
41,504 KB
testcase_35 AC 167 ms
42,340 KB
testcase_36 AC 167 ms
41,804 KB
testcase_37 AC 143 ms
41,868 KB
testcase_38 AC 153 ms
42,288 KB
testcase_39 AC 154 ms
41,868 KB
testcase_40 AC 181 ms
43,228 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		int ans[] = new int[n];

		for (int i = 0; i < n; i++) {
			ans[i] = sc.nextInt();
		}
		Arrays.sort(ans);
		if (n % 2 == 0) { // 偶数
			System.out.println((ans[(n / 2) - 1] + ans[n / 2]) / 2.0);
		} else { // 奇数
			System.out.println(ans[n / 2]);
		}
	}
}
0