結果

問題 No.275 中央値を求めよ
ユーザー spacenautspacenaut
提出日時 2016-05-15 10:18:01
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 469 bytes
コンパイル時間 2,150 ms
コンパイル使用メモリ 76,992 KB
実行使用メモリ 54,892 KB
最終ジャッジ日時 2024-10-06 03:11:48
合計ジャッジ時間 9,382 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 116 ms
54,264 KB
testcase_04 AC 121 ms
54,056 KB
testcase_05 WA -
testcase_06 AC 140 ms
53,996 KB
testcase_07 AC 153 ms
54,424 KB
testcase_08 AC 136 ms
54,184 KB
testcase_09 AC 135 ms
54,000 KB
testcase_10 WA -
testcase_11 AC 127 ms
54,252 KB
testcase_12 AC 131 ms
54,352 KB
testcase_13 AC 116 ms
52,900 KB
testcase_14 AC 128 ms
54,068 KB
testcase_15 WA -
testcase_16 AC 172 ms
54,432 KB
testcase_17 AC 168 ms
54,428 KB
testcase_18 WA -
testcase_19 AC 176 ms
54,436 KB
testcase_20 AC 172 ms
54,504 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 152 ms
54,244 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 176 ms
54,208 KB
testcase_27 AC 170 ms
54,320 KB
testcase_28 AC 132 ms
54,152 KB
testcase_29 AC 157 ms
54,152 KB
testcase_30 AC 130 ms
54,288 KB
testcase_31 AC 168 ms
54,848 KB
testcase_32 AC 137 ms
53,972 KB
testcase_33 AC 175 ms
54,280 KB
testcase_34 AC 133 ms
54,392 KB
testcase_35 AC 177 ms
54,180 KB
testcase_36 AC 163 ms
54,580 KB
testcase_37 AC 145 ms
54,016 KB
testcase_38 AC 141 ms
53,968 KB
testcase_39 AC 156 ms
54,180 KB
testcase_40 AC 183 ms
54,544 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

class No0275{
	public static void main(String[] args){
		Scanner sc = new Scanner(System.in);
		ArrayList<Integer> array = new ArrayList<Integer>();
		
		int n = sc.nextInt();
		
		for(int i = 0; i < n; i++){
			array.add(sc.nextInt());
		}
		
		Collections.sort(array);
		
		double mid;
		if(n % 2 == 1){
			System.out.println(array.get(n / 2));
		}else{
			mid = (array.get(n / 2) + array.get(n / 2 - 1)) / 2;
			System.out.println(mid);
		}
	}
}
0