結果

問題 No.275 中央値を求めよ
ユーザー kaoetayakaoetaya
提出日時 2016-11-29 19:55:28
言語 Java21
(openjdk 21)
結果
AC  
実行時間 200 ms / 1,000 ms
コード長 416 bytes
コンパイル時間 4,069 ms
コンパイル使用メモリ 75,364 KB
実行使用メモリ 42,864 KB
最終ジャッジ日時 2024-06-25 00:09:36
合計ジャッジ時間 11,364 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 136 ms
41,496 KB
testcase_01 AC 136 ms
41,356 KB
testcase_02 AC 150 ms
41,300 KB
testcase_03 AC 135 ms
41,388 KB
testcase_04 AC 136 ms
41,724 KB
testcase_05 AC 138 ms
41,556 KB
testcase_06 AC 147 ms
41,448 KB
testcase_07 AC 189 ms
42,200 KB
testcase_08 AC 146 ms
41,404 KB
testcase_09 AC 149 ms
41,664 KB
testcase_10 AC 152 ms
41,680 KB
testcase_11 AC 136 ms
41,268 KB
testcase_12 AC 137 ms
41,456 KB
testcase_13 AC 133 ms
40,988 KB
testcase_14 AC 136 ms
41,304 KB
testcase_15 AC 196 ms
42,756 KB
testcase_16 AC 200 ms
42,716 KB
testcase_17 AC 198 ms
42,716 KB
testcase_18 AC 174 ms
41,976 KB
testcase_19 AC 185 ms
41,928 KB
testcase_20 AC 190 ms
42,464 KB
testcase_21 AC 189 ms
42,864 KB
testcase_22 AC 192 ms
42,356 KB
testcase_23 AC 169 ms
41,932 KB
testcase_24 AC 172 ms
41,596 KB
testcase_25 AC 196 ms
42,572 KB
testcase_26 AC 191 ms
42,456 KB
testcase_27 AC 193 ms
42,528 KB
testcase_28 AC 146 ms
41,460 KB
testcase_29 AC 174 ms
41,860 KB
testcase_30 AC 145 ms
41,496 KB
testcase_31 AC 198 ms
42,376 KB
testcase_32 AC 151 ms
41,576 KB
testcase_33 AC 181 ms
42,316 KB
testcase_34 AC 145 ms
41,388 KB
testcase_35 AC 183 ms
42,668 KB
testcase_36 AC 179 ms
42,044 KB
testcase_37 AC 154 ms
41,572 KB
testcase_38 AC 160 ms
41,732 KB
testcase_39 AC 167 ms
41,392 KB
testcase_40 AC 192 ms
42,316 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.math.*;

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