結果

問題 No.275 中央値を求めよ
ユーザー samplelpmassamplelpmas
提出日時 2016-12-16 09:22:11
言語 Java21
(openjdk 21)
結果
AC  
実行時間 191 ms / 1,000 ms
コード長 636 bytes
コンパイル時間 2,300 ms
コンパイル使用メモリ 79,520 KB
実行使用メモリ 54,784 KB
最終ジャッジ日時 2024-06-25 00:11:04
合計ジャッジ時間 10,013 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
54,300 KB
testcase_01 AC 133 ms
54,216 KB
testcase_02 AC 146 ms
54,360 KB
testcase_03 AC 136 ms
53,972 KB
testcase_04 AC 122 ms
52,768 KB
testcase_05 AC 134 ms
54,172 KB
testcase_06 AC 142 ms
54,232 KB
testcase_07 AC 182 ms
54,524 KB
testcase_08 AC 145 ms
54,148 KB
testcase_09 AC 147 ms
53,956 KB
testcase_10 AC 146 ms
54,244 KB
testcase_11 AC 131 ms
54,468 KB
testcase_12 AC 130 ms
54,324 KB
testcase_13 AC 133 ms
54,328 KB
testcase_14 AC 134 ms
54,024 KB
testcase_15 AC 191 ms
54,620 KB
testcase_16 AC 186 ms
54,420 KB
testcase_17 AC 175 ms
54,472 KB
testcase_18 AC 170 ms
54,308 KB
testcase_19 AC 187 ms
54,396 KB
testcase_20 AC 179 ms
54,784 KB
testcase_21 AC 173 ms
54,332 KB
testcase_22 AC 184 ms
54,612 KB
testcase_23 AC 174 ms
54,436 KB
testcase_24 AC 158 ms
54,352 KB
testcase_25 AC 187 ms
54,756 KB
testcase_26 AC 178 ms
54,444 KB
testcase_27 AC 182 ms
54,268 KB
testcase_28 AC 139 ms
54,228 KB
testcase_29 AC 170 ms
54,312 KB
testcase_30 AC 142 ms
53,980 KB
testcase_31 AC 184 ms
54,624 KB
testcase_32 AC 146 ms
54,512 KB
testcase_33 AC 184 ms
54,240 KB
testcase_34 AC 142 ms
54,332 KB
testcase_35 AC 183 ms
54,524 KB
testcase_36 AC 172 ms
54,336 KB
testcase_37 AC 144 ms
54,332 KB
testcase_38 AC 157 ms
54,360 KB
testcase_39 AC 156 ms
54,344 KB
testcase_40 AC 187 ms
54,520 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.Scanner;

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);

        double median;

        if ((N % 2) == 0) {

            int midpoint1 = A[N / 2 - 1];
            int midpoint2 = A[N / 2];

            median = (double) (midpoint1 + midpoint2) / 2;

        } else {

            median = A[N / 2];

        }

        System.out.println(median);

    }

}
0