結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
41,260 KB
testcase_01 AC 134 ms
41,176 KB
testcase_02 AC 146 ms
41,340 KB
testcase_03 AC 128 ms
41,184 KB
testcase_04 AC 131 ms
41,088 KB
testcase_05 AC 132 ms
41,204 KB
testcase_06 AC 141 ms
41,480 KB
testcase_07 AC 183 ms
41,972 KB
testcase_08 AC 145 ms
41,324 KB
testcase_09 AC 147 ms
41,328 KB
testcase_10 AC 148 ms
41,360 KB
testcase_11 AC 131 ms
41,256 KB
testcase_12 AC 130 ms
41,168 KB
testcase_13 AC 128 ms
41,248 KB
testcase_14 AC 129 ms
41,092 KB
testcase_15 AC 192 ms
42,468 KB
testcase_16 AC 191 ms
42,544 KB
testcase_17 AC 187 ms
42,516 KB
testcase_18 AC 158 ms
41,568 KB
testcase_19 AC 184 ms
41,980 KB
testcase_20 AC 187 ms
41,984 KB
testcase_21 AC 171 ms
41,840 KB
testcase_22 AC 189 ms
42,220 KB
testcase_23 AC 183 ms
41,712 KB
testcase_24 AC 156 ms
41,832 KB
testcase_25 AC 191 ms
42,340 KB
testcase_26 AC 184 ms
42,112 KB
testcase_27 AC 184 ms
42,144 KB
testcase_28 AC 143 ms
41,520 KB
testcase_29 AC 176 ms
41,712 KB
testcase_30 AC 144 ms
41,356 KB
testcase_31 AC 181 ms
42,300 KB
testcase_32 AC 149 ms
41,348 KB
testcase_33 AC 186 ms
42,108 KB
testcase_34 AC 139 ms
41,500 KB
testcase_35 AC 183 ms
41,924 KB
testcase_36 AC 173 ms
41,588 KB
testcase_37 AC 144 ms
41,916 KB
testcase_38 AC 152 ms
41,324 KB
testcase_39 AC 159 ms
41,600 KB
testcase_40 AC 191 ms
42,388 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