結果

問題 No.275 中央値を求めよ
ユーザー hippolover02hippolover02
提出日時 2022-07-19 16:21:05
言語 Java21
(openjdk 21)
結果
AC  
実行時間 190 ms / 1,000 ms
コード長 624 bytes
コンパイル時間 2,172 ms
コンパイル使用メモリ 74,524 KB
実行使用メモリ 42,584 KB
最終ジャッジ日時 2024-07-01 19:29:53
合計ジャッジ時間 10,109 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
41,228 KB
testcase_01 AC 129 ms
41,116 KB
testcase_02 AC 140 ms
41,448 KB
testcase_03 AC 128 ms
40,928 KB
testcase_04 AC 130 ms
41,256 KB
testcase_05 AC 129 ms
41,288 KB
testcase_06 AC 140 ms
41,144 KB
testcase_07 AC 179 ms
42,036 KB
testcase_08 AC 143 ms
41,312 KB
testcase_09 AC 142 ms
41,548 KB
testcase_10 AC 147 ms
41,316 KB
testcase_11 AC 128 ms
41,112 KB
testcase_12 AC 130 ms
41,160 KB
testcase_13 AC 130 ms
41,140 KB
testcase_14 AC 128 ms
41,056 KB
testcase_15 AC 189 ms
42,300 KB
testcase_16 AC 190 ms
42,380 KB
testcase_17 AC 190 ms
42,584 KB
testcase_18 AC 164 ms
41,772 KB
testcase_19 AC 180 ms
42,040 KB
testcase_20 AC 179 ms
42,064 KB
testcase_21 AC 176 ms
41,800 KB
testcase_22 AC 183 ms
42,168 KB
testcase_23 AC 180 ms
41,932 KB
testcase_24 AC 167 ms
41,372 KB
testcase_25 AC 180 ms
42,316 KB
testcase_26 AC 183 ms
42,208 KB
testcase_27 AC 184 ms
41,992 KB
testcase_28 AC 140 ms
41,440 KB
testcase_29 AC 176 ms
41,896 KB
testcase_30 AC 143 ms
41,468 KB
testcase_31 AC 186 ms
42,204 KB
testcase_32 AC 147 ms
41,508 KB
testcase_33 AC 189 ms
42,180 KB
testcase_34 AC 141 ms
41,160 KB
testcase_35 AC 185 ms
41,980 KB
testcase_36 AC 171 ms
41,556 KB
testcase_37 AC 147 ms
41,560 KB
testcase_38 AC 163 ms
41,476 KB
testcase_39 AC 155 ms
41,540 KB
testcase_40 AC 188 ms
42,488 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
        int num = sc.nextInt();
        int[] arr = new int[num];
        for(int i=0;i<num;i++){
            arr[i] = sc.nextInt();
        }
        // ソート
        Arrays.sort(arr);
        int cnt = num / 2;
        double center;
        // 中央値算出
        if(num % 2 == 0){
            // 偶数
            center = ((double)arr[cnt] + (double)arr[cnt - 1]) / 2;
        }else {
            // 奇数
            center = arr[cnt];
        }
        System.out.println(center);
	}
}
0