結果

問題 No.275 中央値を求めよ
ユーザー h_tyokinuhatah_tyokinuhata
提出日時 2016-01-19 19:00:43
言語 Java21
(openjdk 21)
結果
AC  
実行時間 183 ms / 1,000 ms
コード長 390 bytes
コンパイル時間 2,304 ms
コンパイル使用メモリ 74,904 KB
実行使用メモリ 42,692 KB
最終ジャッジ日時 2024-06-24 23:40:31
合計ジャッジ時間 9,437 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 114 ms
41,092 KB
testcase_01 AC 115 ms
41,324 KB
testcase_02 AC 139 ms
41,592 KB
testcase_03 AC 124 ms
41,224 KB
testcase_04 AC 124 ms
41,384 KB
testcase_05 AC 125 ms
41,184 KB
testcase_06 AC 137 ms
41,384 KB
testcase_07 AC 170 ms
42,628 KB
testcase_08 AC 138 ms
41,596 KB
testcase_09 AC 138 ms
41,484 KB
testcase_10 AC 139 ms
41,628 KB
testcase_11 AC 121 ms
41,120 KB
testcase_12 AC 122 ms
41,096 KB
testcase_13 AC 128 ms
41,252 KB
testcase_14 AC 121 ms
41,248 KB
testcase_15 AC 183 ms
42,488 KB
testcase_16 AC 178 ms
42,504 KB
testcase_17 AC 178 ms
42,692 KB
testcase_18 AC 150 ms
41,892 KB
testcase_19 AC 178 ms
42,248 KB
testcase_20 AC 169 ms
42,332 KB
testcase_21 AC 168 ms
41,968 KB
testcase_22 AC 176 ms
42,632 KB
testcase_23 AC 165 ms
41,752 KB
testcase_24 AC 147 ms
41,796 KB
testcase_25 AC 182 ms
42,408 KB
testcase_26 AC 174 ms
42,032 KB
testcase_27 AC 164 ms
42,236 KB
testcase_28 AC 132 ms
41,604 KB
testcase_29 AC 162 ms
41,760 KB
testcase_30 AC 136 ms
41,500 KB
testcase_31 AC 182 ms
42,364 KB
testcase_32 AC 152 ms
41,484 KB
testcase_33 AC 176 ms
42,112 KB
testcase_34 AC 141 ms
41,256 KB
testcase_35 AC 178 ms
42,364 KB
testcase_36 AC 171 ms
41,844 KB
testcase_37 AC 141 ms
41,764 KB
testcase_38 AC 145 ms
41,440 KB
testcase_39 AC 148 ms
41,668 KB
testcase_40 AC 178 ms
42,276 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		
		int N = sc.nextInt();
		int[] A = new int[N];
		for(int i = 0; i < N; i++) {
			A[i] = sc.nextInt();
		}
		
		Arrays.sort(A);
		
		if(N % 2 == 0) {
			System.out.println((double)(A[N / 2] + A[N / 2 - 1]) / 2);
		} else {
			System.out.println(A[N / 2]);
		}
	}
}
0