結果

問題 No.275 中央値を求めよ
ユーザー sasakkisasakki
提出日時 2016-04-26 11:50:47
言語 Java21
(openjdk 21)
結果
AC  
実行時間 170 ms / 1,000 ms
コード長 521 bytes
コンパイル時間 2,122 ms
コンパイル使用メモリ 77,312 KB
実行使用メモリ 54,520 KB
最終ジャッジ日時 2024-06-24 23:48:20
合計ジャッジ時間 8,961 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 122 ms
53,888 KB
testcase_01 AC 120 ms
54,144 KB
testcase_02 AC 126 ms
54,116 KB
testcase_03 AC 117 ms
54,116 KB
testcase_04 AC 119 ms
54,116 KB
testcase_05 AC 118 ms
54,232 KB
testcase_06 AC 126 ms
53,956 KB
testcase_07 AC 158 ms
54,324 KB
testcase_08 AC 128 ms
54,312 KB
testcase_09 AC 128 ms
53,904 KB
testcase_10 AC 128 ms
54,292 KB
testcase_11 AC 118 ms
54,056 KB
testcase_12 AC 121 ms
53,896 KB
testcase_13 AC 121 ms
54,012 KB
testcase_14 AC 123 ms
53,992 KB
testcase_15 AC 164 ms
54,004 KB
testcase_16 AC 161 ms
54,352 KB
testcase_17 AC 161 ms
54,324 KB
testcase_18 AC 138 ms
54,244 KB
testcase_19 AC 150 ms
54,296 KB
testcase_20 AC 167 ms
54,488 KB
testcase_21 AC 152 ms
54,240 KB
testcase_22 AC 159 ms
54,452 KB
testcase_23 AC 153 ms
54,320 KB
testcase_24 AC 134 ms
54,244 KB
testcase_25 AC 155 ms
54,464 KB
testcase_26 AC 162 ms
54,064 KB
testcase_27 AC 152 ms
54,012 KB
testcase_28 AC 137 ms
53,992 KB
testcase_29 AC 145 ms
53,836 KB
testcase_30 AC 127 ms
54,308 KB
testcase_31 AC 160 ms
54,516 KB
testcase_32 AC 129 ms
54,176 KB
testcase_33 AC 155 ms
54,368 KB
testcase_34 AC 127 ms
54,004 KB
testcase_35 AC 157 ms
54,428 KB
testcase_36 AC 147 ms
53,924 KB
testcase_37 AC 131 ms
54,184 KB
testcase_38 AC 133 ms
54,320 KB
testcase_39 AC 146 ms
54,044 KB
testcase_40 AC 170 ms
54,520 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

class Main{
	public static void main(String args[]){
		Scanner sc = new Scanner(System.in);
		ArrayList<Integer> array = new ArrayList<Integer>();
		
		int num = Integer.parseInt(sc.next());

		for(int i = 0; i < num; i++){
			array.add(Integer.parseInt(sc.next()));
		}

		Collections.sort(array);

		switch(num % 2){
		case 0:
			System.out.println( (double)(array.get(num / 2) + array.get((num / 2) - 1)) / 2 );
			break;
		case 1:
			System.out.println(array.get(num / 2));
			break;
		}
		
	}
}
0