結果

問題 No.275 中央値を求めよ
ユーザー トミートミー
提出日時 2024-04-01 15:13:06
言語 Java21
(openjdk 21)
結果
AC  
実行時間 201 ms / 1,000 ms
コード長 519 bytes
コンパイル時間 3,207 ms
コンパイル使用メモリ 74,220 KB
実行使用メモリ 54,596 KB
最終ジャッジ日時 2024-09-30 21:49:48
合計ジャッジ時間 10,781 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
54,268 KB
testcase_01 AC 132 ms
54,140 KB
testcase_02 AC 140 ms
54,068 KB
testcase_03 AC 126 ms
54,068 KB
testcase_04 AC 133 ms
54,120 KB
testcase_05 AC 131 ms
54,072 KB
testcase_06 AC 140 ms
54,248 KB
testcase_07 AC 180 ms
54,452 KB
testcase_08 AC 143 ms
54,172 KB
testcase_09 AC 145 ms
54,244 KB
testcase_10 AC 144 ms
54,252 KB
testcase_11 AC 114 ms
53,056 KB
testcase_12 AC 131 ms
54,064 KB
testcase_13 AC 129 ms
53,964 KB
testcase_14 AC 120 ms
52,688 KB
testcase_15 AC 183 ms
54,444 KB
testcase_16 AC 182 ms
54,304 KB
testcase_17 AC 201 ms
54,572 KB
testcase_18 AC 154 ms
54,108 KB
testcase_19 AC 176 ms
54,492 KB
testcase_20 AC 176 ms
54,400 KB
testcase_21 AC 177 ms
54,424 KB
testcase_22 AC 186 ms
54,484 KB
testcase_23 AC 171 ms
54,596 KB
testcase_24 AC 156 ms
54,500 KB
testcase_25 AC 179 ms
42,548 KB
testcase_26 AC 184 ms
41,992 KB
testcase_27 AC 182 ms
42,168 KB
testcase_28 AC 136 ms
41,572 KB
testcase_29 AC 152 ms
41,724 KB
testcase_30 AC 133 ms
41,724 KB
testcase_31 AC 183 ms
41,980 KB
testcase_32 AC 148 ms
41,624 KB
testcase_33 AC 184 ms
42,820 KB
testcase_34 AC 138 ms
41,768 KB
testcase_35 AC 183 ms
42,428 KB
testcase_36 AC 165 ms
41,892 KB
testcase_37 AC 155 ms
41,324 KB
testcase_38 AC 152 ms
41,724 KB
testcase_39 AC 160 ms
41,956 KB
testcase_40 AC 186 ms
42,588 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[] a = new int[n];
        for (int i = 0; i != n; i++) {
            a[i] = sc.nextInt();
        }
        Arrays.sort(a);
        if (n % 2 == 0) {
            System.out.println((double)(a[n / 2 - 1] + a[n / 2]) / 2);
            
        } else {
            System.out.println(a[n / 2]);
            
        }

        sc.close();

    }
}
0