結果

問題 No.275 中央値を求めよ
ユーザー 37zigen37zigen
提出日時 2016-03-29 13:23:16
言語 Java21
(openjdk 21)
結果
AC  
実行時間 270 ms / 1,000 ms
コード長 450 bytes
コンパイル時間 2,233 ms
コンパイル使用メモリ 74,428 KB
実行使用メモリ 48,684 KB
最終ジャッジ日時 2024-06-24 23:47:01
合計ジャッジ時間 11,921 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 143 ms
41,772 KB
testcase_01 AC 144 ms
41,844 KB
testcase_02 AC 184 ms
42,620 KB
testcase_03 AC 146 ms
41,944 KB
testcase_04 AC 146 ms
41,872 KB
testcase_05 AC 145 ms
41,968 KB
testcase_06 AC 175 ms
42,716 KB
testcase_07 AC 242 ms
45,676 KB
testcase_08 AC 202 ms
42,800 KB
testcase_09 AC 192 ms
42,844 KB
testcase_10 AC 203 ms
42,996 KB
testcase_11 AC 144 ms
42,004 KB
testcase_12 AC 132 ms
41,024 KB
testcase_13 AC 145 ms
41,712 KB
testcase_14 AC 147 ms
41,744 KB
testcase_15 AC 270 ms
47,852 KB
testcase_16 AC 263 ms
47,900 KB
testcase_17 AC 268 ms
47,556 KB
testcase_18 AC 223 ms
43,580 KB
testcase_19 AC 240 ms
45,952 KB
testcase_20 AC 244 ms
46,404 KB
testcase_21 AC 226 ms
45,640 KB
testcase_22 AC 252 ms
47,460 KB
testcase_23 AC 235 ms
45,276 KB
testcase_24 AC 216 ms
43,208 KB
testcase_25 AC 256 ms
47,684 KB
testcase_26 AC 252 ms
47,064 KB
testcase_27 AC 247 ms
45,716 KB
testcase_28 AC 159 ms
42,488 KB
testcase_29 AC 226 ms
44,368 KB
testcase_30 AC 186 ms
43,016 KB
testcase_31 AC 247 ms
47,240 KB
testcase_32 AC 183 ms
43,152 KB
testcase_33 AC 256 ms
46,592 KB
testcase_34 AC 179 ms
42,344 KB
testcase_35 AC 246 ms
46,704 KB
testcase_36 AC 230 ms
45,384 KB
testcase_37 AC 204 ms
43,224 KB
testcase_38 AC 213 ms
43,100 KB
testcase_39 AC 208 ms
43,336 KB
testcase_40 AC 263 ms
48,684 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder275;
import java.util.Arrays;
import java.util.Scanner;
public class Main {
	public static void main(String[] args){
		Scanner sc=new Scanner(System.in);
		int n=sc.nextInt();
		double[] a=new double[n+1];
		a[0]=-99999999;
		
		for(int i=1;i<=n;i++){
			a[i]=sc.nextDouble();
		}
		Arrays.sort(a);
		if(n%2==0){
			System.out.println((a[n/2]+a[n/2+1])/2);
		}else if(n%2==1){
			System.out.println(a[n/2+1]);
		}
		sc.close();
	}
}
0