結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
41,208 KB
testcase_01 AC 125 ms
41,272 KB
testcase_02 AC 135 ms
41,712 KB
testcase_03 AC 127 ms
41,264 KB
testcase_04 AC 127 ms
41,432 KB
testcase_05 AC 124 ms
41,136 KB
testcase_06 AC 134 ms
41,596 KB
testcase_07 AC 178 ms
42,224 KB
testcase_08 AC 140 ms
41,488 KB
testcase_09 AC 144 ms
41,692 KB
testcase_10 AC 137 ms
41,804 KB
testcase_11 AC 121 ms
41,308 KB
testcase_12 AC 123 ms
41,148 KB
testcase_13 AC 124 ms
41,304 KB
testcase_14 AC 129 ms
41,436 KB
testcase_15 AC 181 ms
42,688 KB
testcase_16 AC 180 ms
42,460 KB
testcase_17 AC 187 ms
42,384 KB
testcase_18 AC 165 ms
41,536 KB
testcase_19 AC 182 ms
42,072 KB
testcase_20 AC 174 ms
42,192 KB
testcase_21 AC 170 ms
42,064 KB
testcase_22 AC 178 ms
42,332 KB
testcase_23 AC 169 ms
42,056 KB
testcase_24 AC 148 ms
41,688 KB
testcase_25 AC 183 ms
42,584 KB
testcase_26 AC 180 ms
42,284 KB
testcase_27 AC 170 ms
41,848 KB
testcase_28 AC 139 ms
41,324 KB
testcase_29 AC 170 ms
42,620 KB
testcase_30 AC 139 ms
41,708 KB
testcase_31 AC 183 ms
42,224 KB
testcase_32 AC 138 ms
41,712 KB
testcase_33 AC 176 ms
42,280 KB
testcase_34 AC 136 ms
41,536 KB
testcase_35 AC 170 ms
42,320 KB
testcase_36 AC 170 ms
41,984 KB
testcase_37 AC 147 ms
41,676 KB
testcase_38 AC 160 ms
41,836 KB
testcase_39 AC 159 ms
41,636 KB
testcase_40 AC 185 ms
42,372 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