結果

問題 No.275 中央値を求めよ
ユーザー tentententen
提出日時 2020-11-11 09:04:35
言語 Java21
(openjdk 21)
結果
AC  
実行時間 164 ms / 1,000 ms
コード長 500 bytes
コンパイル時間 2,364 ms
コンパイル使用メモリ 74,336 KB
実行使用メモリ 43,060 KB
最終ジャッジ日時 2024-07-22 18:19:55
合計ジャッジ時間 8,772 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 107 ms
41,132 KB
testcase_01 AC 117 ms
41,128 KB
testcase_02 AC 120 ms
41,528 KB
testcase_03 AC 110 ms
40,924 KB
testcase_04 AC 114 ms
41,008 KB
testcase_05 AC 114 ms
41,584 KB
testcase_06 AC 119 ms
41,628 KB
testcase_07 AC 146 ms
41,876 KB
testcase_08 AC 128 ms
41,460 KB
testcase_09 AC 124 ms
41,784 KB
testcase_10 AC 113 ms
41,828 KB
testcase_11 AC 108 ms
41,456 KB
testcase_12 AC 110 ms
41,356 KB
testcase_13 AC 108 ms
40,972 KB
testcase_14 AC 99 ms
40,936 KB
testcase_15 AC 158 ms
43,060 KB
testcase_16 AC 160 ms
42,596 KB
testcase_17 AC 147 ms
42,288 KB
testcase_18 AC 127 ms
41,848 KB
testcase_19 AC 153 ms
42,192 KB
testcase_20 AC 153 ms
42,088 KB
testcase_21 AC 143 ms
41,692 KB
testcase_22 AC 151 ms
42,320 KB
testcase_23 AC 146 ms
42,092 KB
testcase_24 AC 127 ms
41,672 KB
testcase_25 AC 164 ms
42,488 KB
testcase_26 AC 159 ms
41,984 KB
testcase_27 AC 158 ms
42,524 KB
testcase_28 AC 119 ms
41,384 KB
testcase_29 AC 138 ms
41,664 KB
testcase_30 AC 121 ms
41,544 KB
testcase_31 AC 151 ms
42,120 KB
testcase_32 AC 125 ms
41,560 KB
testcase_33 AC 156 ms
42,560 KB
testcase_34 AC 118 ms
41,220 KB
testcase_35 AC 154 ms
42,176 KB
testcase_36 AC 148 ms
41,556 KB
testcase_37 AC 124 ms
41,312 KB
testcase_38 AC 128 ms
41,796 KB
testcase_39 AC 145 ms
42,224 KB
testcase_40 AC 159 ms
42,232 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        int[] arr = new int[n];
        for (int i = 0; i < n; i++) {
            arr[i] = sc.nextInt();
        }
        Arrays.sort(arr);
        double ans;
        if (n % 2 == 0) {
            ans = (arr[n / 2 - 1] + arr[n / 2]) / 2.0;
        } else {
            ans = arr[n / 2];
        }
        System.out.println(ans);
    }
}
0