結果

問題 No.275 中央値を求めよ
ユーザー takutakutakutaku
提出日時 2020-09-17 09:43:02
言語 Java21
(openjdk 21)
結果
AC  
実行時間 201 ms / 1,000 ms
コード長 733 bytes
コンパイル時間 2,093 ms
コンパイル使用メモリ 75,936 KB
実行使用メモリ 54,896 KB
最終ジャッジ日時 2024-06-22 06:26:11
合計ジャッジ時間 10,279 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 140 ms
54,088 KB
testcase_01 AC 138 ms
54,060 KB
testcase_02 AC 156 ms
54,164 KB
testcase_03 AC 144 ms
54,460 KB
testcase_04 AC 140 ms
54,440 KB
testcase_05 AC 142 ms
54,040 KB
testcase_06 AC 151 ms
54,308 KB
testcase_07 AC 190 ms
54,548 KB
testcase_08 AC 153 ms
54,396 KB
testcase_09 AC 150 ms
54,564 KB
testcase_10 AC 149 ms
54,256 KB
testcase_11 AC 135 ms
54,156 KB
testcase_12 AC 138 ms
53,948 KB
testcase_13 AC 138 ms
54,132 KB
testcase_14 AC 141 ms
54,136 KB
testcase_15 AC 197 ms
54,660 KB
testcase_16 AC 189 ms
54,628 KB
testcase_17 AC 201 ms
54,664 KB
testcase_18 AC 174 ms
54,272 KB
testcase_19 AC 192 ms
54,564 KB
testcase_20 AC 192 ms
54,636 KB
testcase_21 AC 183 ms
54,404 KB
testcase_22 AC 190 ms
54,252 KB
testcase_23 AC 188 ms
54,436 KB
testcase_24 AC 160 ms
54,292 KB
testcase_25 AC 193 ms
54,820 KB
testcase_26 AC 186 ms
54,876 KB
testcase_27 AC 193 ms
54,456 KB
testcase_28 AC 148 ms
54,428 KB
testcase_29 AC 173 ms
54,284 KB
testcase_30 AC 145 ms
54,292 KB
testcase_31 AC 197 ms
54,392 KB
testcase_32 AC 155 ms
54,324 KB
testcase_33 AC 197 ms
54,896 KB
testcase_34 AC 148 ms
54,320 KB
testcase_35 AC 190 ms
54,420 KB
testcase_36 AC 185 ms
54,360 KB
testcase_37 AC 157 ms
54,300 KB
testcase_38 AC 160 ms
54,128 KB
testcase_39 AC 159 ms
54,252 KB
testcase_40 AC 190 ms
54,768 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	public static void main(String[] args) {
	    
	    Scanner sc = new Scanner(System.in);
	    int n = sc.nextInt();
	    
	    // 整数Aを配列に格納する
	    int[] number = new int[n];
	    for(int i = 0; i < n; i++) {
	        number[i] = sc.nextInt();
	    }
	    
	    // 小さい順にソートする
	    Arrays.sort(number);
	    double result = 0;
	    
	    // 整数Aが偶数個の時
	    if(n % 2 == 0) {
	        int central = n / 2;
	        result = ((double)number[central - 1] + (double)number[central]) / 2;
	    }else {
	        int central = n / 2;
	        result = (double)number[central];   // +1を消去
	    }
	    
	    System.out.println(result);
	}
}

0