結果

問題 No.275 中央値を求めよ
ユーザー spacenautspacenaut
提出日時 2016-05-15 10:23:59
言語 Java21
(openjdk 21)
結果
AC  
実行時間 207 ms / 1,000 ms
コード長 487 bytes
コンパイル時間 2,327 ms
コンパイル使用メモリ 76,596 KB
実行使用メモリ 42,600 KB
最終ジャッジ日時 2024-06-24 23:50:00
合計ジャッジ時間 10,608 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
41,408 KB
testcase_01 AC 129 ms
41,268 KB
testcase_02 AC 141 ms
41,312 KB
testcase_03 AC 131 ms
41,248 KB
testcase_04 AC 129 ms
41,340 KB
testcase_05 AC 125 ms
41,308 KB
testcase_06 AC 140 ms
41,268 KB
testcase_07 AC 182 ms
42,128 KB
testcase_08 AC 145 ms
41,724 KB
testcase_09 AC 143 ms
41,612 KB
testcase_10 AC 145 ms
41,500 KB
testcase_11 AC 128 ms
41,220 KB
testcase_12 AC 129 ms
41,080 KB
testcase_13 AC 128 ms
41,264 KB
testcase_14 AC 115 ms
40,144 KB
testcase_15 AC 195 ms
42,380 KB
testcase_16 AC 191 ms
42,436 KB
testcase_17 AC 182 ms
42,484 KB
testcase_18 AC 158 ms
41,784 KB
testcase_19 AC 186 ms
42,152 KB
testcase_20 AC 182 ms
42,256 KB
testcase_21 AC 171 ms
42,040 KB
testcase_22 AC 207 ms
42,480 KB
testcase_23 AC 202 ms
41,976 KB
testcase_24 AC 178 ms
41,804 KB
testcase_25 AC 201 ms
42,392 KB
testcase_26 AC 183 ms
42,392 KB
testcase_27 AC 185 ms
42,148 KB
testcase_28 AC 143 ms
41,328 KB
testcase_29 AC 177 ms
41,812 KB
testcase_30 AC 140 ms
41,400 KB
testcase_31 AC 179 ms
42,008 KB
testcase_32 AC 145 ms
41,656 KB
testcase_33 AC 184 ms
42,224 KB
testcase_34 AC 141 ms
41,408 KB
testcase_35 AC 186 ms
41,732 KB
testcase_36 AC 172 ms
41,660 KB
testcase_37 AC 142 ms
41,596 KB
testcase_38 AC 154 ms
41,508 KB
testcase_39 AC 161 ms
41,936 KB
testcase_40 AC 193 ms
42,600 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 = ((double)(array.get(n / 2) + (double)array.get(n / 2 - 1)) / 2);
			System.out.println(mid);
		}
	}
}
0