結果

問題 No.275 中央値を求めよ
ユーザー uafr_csuafr_cs
提出日時 2015-09-04 22:35:51
言語 Java21
(openjdk 21)
結果
AC  
実行時間 194 ms / 1,000 ms
コード長 525 bytes
コンパイル時間 2,109 ms
コンパイル使用メモリ 74,744 KB
実行使用メモリ 42,788 KB
最終ジャッジ日時 2024-06-24 23:09:40
合計ジャッジ時間 9,857 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
41,272 KB
testcase_01 AC 132 ms
41,288 KB
testcase_02 AC 146 ms
41,736 KB
testcase_03 AC 127 ms
41,076 KB
testcase_04 AC 130 ms
41,100 KB
testcase_05 AC 133 ms
41,088 KB
testcase_06 AC 141 ms
41,600 KB
testcase_07 AC 183 ms
41,792 KB
testcase_08 AC 146 ms
41,512 KB
testcase_09 AC 149 ms
41,596 KB
testcase_10 AC 150 ms
41,776 KB
testcase_11 AC 130 ms
41,480 KB
testcase_12 AC 131 ms
41,636 KB
testcase_13 AC 115 ms
40,052 KB
testcase_14 AC 130 ms
41,548 KB
testcase_15 AC 189 ms
42,432 KB
testcase_16 AC 194 ms
42,444 KB
testcase_17 AC 189 ms
42,660 KB
testcase_18 AC 162 ms
41,976 KB
testcase_19 AC 184 ms
41,868 KB
testcase_20 AC 189 ms
42,284 KB
testcase_21 AC 172 ms
42,340 KB
testcase_22 AC 176 ms
42,240 KB
testcase_23 AC 172 ms
41,572 KB
testcase_24 AC 153 ms
41,780 KB
testcase_25 AC 193 ms
42,676 KB
testcase_26 AC 183 ms
42,788 KB
testcase_27 AC 178 ms
42,396 KB
testcase_28 AC 140 ms
41,732 KB
testcase_29 AC 173 ms
41,788 KB
testcase_30 AC 140 ms
41,280 KB
testcase_31 AC 186 ms
42,748 KB
testcase_32 AC 147 ms
41,192 KB
testcase_33 AC 182 ms
42,188 KB
testcase_34 AC 140 ms
41,548 KB
testcase_35 AC 173 ms
42,608 KB
testcase_36 AC 172 ms
42,240 KB
testcase_37 AC 151 ms
41,352 KB
testcase_38 AC 155 ms
41,468 KB
testcase_39 AC 158 ms
41,684 KB
testcase_40 AC 189 ms
42,100 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.HashSet;
import java.util.LinkedList;
import java.util.Scanner;
import java.util.Set;

public class Main {

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

}
0