結果

問題 No.275 中央値を求めよ
ユーザー kou6839kou6839
提出日時 2015-09-06 16:54:26
言語 Java21
(openjdk 21)
結果
AC  
実行時間 187 ms / 1,000 ms
コード長 539 bytes
コンパイル時間 2,699 ms
コンパイル使用メモリ 78,780 KB
実行使用メモリ 42,660 KB
最終ジャッジ日時 2024-06-24 23:14:23
合計ジャッジ時間 10,120 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 125 ms
41,080 KB
testcase_01 AC 129 ms
41,160 KB
testcase_02 AC 138 ms
41,332 KB
testcase_03 AC 124 ms
41,276 KB
testcase_04 AC 126 ms
41,316 KB
testcase_05 AC 124 ms
41,344 KB
testcase_06 AC 135 ms
41,628 KB
testcase_07 AC 169 ms
42,316 KB
testcase_08 AC 143 ms
41,576 KB
testcase_09 AC 142 ms
41,956 KB
testcase_10 AC 141 ms
41,536 KB
testcase_11 AC 125 ms
41,352 KB
testcase_12 AC 126 ms
41,380 KB
testcase_13 AC 128 ms
40,940 KB
testcase_14 AC 127 ms
41,112 KB
testcase_15 AC 187 ms
42,352 KB
testcase_16 AC 184 ms
42,532 KB
testcase_17 AC 181 ms
42,660 KB
testcase_18 AC 150 ms
41,600 KB
testcase_19 AC 180 ms
42,324 KB
testcase_20 AC 178 ms
42,092 KB
testcase_21 AC 165 ms
41,820 KB
testcase_22 AC 176 ms
42,404 KB
testcase_23 AC 169 ms
42,396 KB
testcase_24 AC 151 ms
41,880 KB
testcase_25 AC 181 ms
42,088 KB
testcase_26 AC 178 ms
41,976 KB
testcase_27 AC 161 ms
41,952 KB
testcase_28 AC 135 ms
41,468 KB
testcase_29 AC 150 ms
41,912 KB
testcase_30 AC 134 ms
41,480 KB
testcase_31 AC 176 ms
42,512 KB
testcase_32 AC 140 ms
41,408 KB
testcase_33 AC 178 ms
42,336 KB
testcase_34 AC 138 ms
41,404 KB
testcase_35 AC 175 ms
42,216 KB
testcase_36 AC 172 ms
41,976 KB
testcase_37 AC 145 ms
41,736 KB
testcase_38 AC 146 ms
41,724 KB
testcase_39 AC 160 ms
41,600 KB
testcase_40 AC 183 ms
42,204 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.ObjectInputStream.GetField;
import java.net.NetworkInterface;
import java.util.*;
import java.util.zip.Inflater;

import javax.swing.plaf.synth.SynthSpinnerUI;


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