結果

問題 No.275 中央値を求めよ
ユーザー TatsuDXTatsuDX
提出日時 2016-09-03 15:24:55
言語 Java21
(openjdk 21)
結果
AC  
実行時間 190 ms / 1,000 ms
コード長 429 bytes
コンパイル時間 3,435 ms
コンパイル使用メモリ 74,744 KB
実行使用メモリ 42,752 KB
最終ジャッジ日時 2024-06-25 00:01:35
合計ジャッジ時間 11,417 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
41,260 KB
testcase_01 AC 133 ms
41,120 KB
testcase_02 AC 143 ms
41,472 KB
testcase_03 AC 132 ms
41,360 KB
testcase_04 AC 132 ms
41,244 KB
testcase_05 AC 131 ms
41,116 KB
testcase_06 AC 144 ms
41,616 KB
testcase_07 AC 180 ms
42,752 KB
testcase_08 AC 142 ms
42,256 KB
testcase_09 AC 151 ms
41,496 KB
testcase_10 AC 145 ms
41,464 KB
testcase_11 AC 131 ms
41,060 KB
testcase_12 AC 130 ms
40,976 KB
testcase_13 AC 129 ms
41,320 KB
testcase_14 AC 130 ms
41,428 KB
testcase_15 AC 181 ms
42,648 KB
testcase_16 AC 182 ms
42,124 KB
testcase_17 AC 188 ms
42,392 KB
testcase_18 AC 159 ms
42,108 KB
testcase_19 AC 187 ms
42,108 KB
testcase_20 AC 181 ms
42,240 KB
testcase_21 AC 176 ms
41,752 KB
testcase_22 AC 181 ms
42,468 KB
testcase_23 AC 168 ms
42,240 KB
testcase_24 AC 157 ms
41,440 KB
testcase_25 AC 187 ms
42,492 KB
testcase_26 AC 187 ms
41,996 KB
testcase_27 AC 179 ms
42,272 KB
testcase_28 AC 143 ms
41,516 KB
testcase_29 AC 176 ms
42,020 KB
testcase_30 AC 144 ms
41,528 KB
testcase_31 AC 186 ms
42,272 KB
testcase_32 AC 144 ms
41,260 KB
testcase_33 AC 184 ms
42,444 KB
testcase_34 AC 143 ms
41,456 KB
testcase_35 AC 184 ms
42,720 KB
testcase_36 AC 178 ms
42,100 KB
testcase_37 AC 148 ms
41,712 KB
testcase_38 AC 165 ms
41,896 KB
testcase_39 AC 169 ms
41,572 KB
testcase_40 AC 190 ms
42,492 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Test {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);

		int num = sc.nextInt();
		int[] n = new int[num];
		for (int i = 0; i < num; i++) {
			n[i] = sc.nextInt();
		}
		Arrays.sort(n);
		if (num % 2 == 0) {
			System.out.println((double) (n[num / 2] + n[num / 2 - 1]) / 2);
		} else {
			System.out.println(n[num / 2]);
		}
	}
}
0