結果

問題 No.275 中央値を求めよ
ユーザー 2ch_GreenApple2ch_GreenApple
提出日時 2015-09-06 09:16:27
言語 Java21
(openjdk 21)
結果
AC  
実行時間 192 ms / 1,000 ms
コード長 499 bytes
コンパイル時間 2,113 ms
コンパイル使用メモリ 74,404 KB
実行使用メモリ 42,628 KB
最終ジャッジ日時 2024-06-24 23:12:12
合計ジャッジ時間 9,901 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 118 ms
40,020 KB
testcase_01 AC 132 ms
41,332 KB
testcase_02 AC 143 ms
41,576 KB
testcase_03 AC 118 ms
40,256 KB
testcase_04 AC 130 ms
41,164 KB
testcase_05 AC 131 ms
41,236 KB
testcase_06 AC 149 ms
41,652 KB
testcase_07 AC 181 ms
42,456 KB
testcase_08 AC 144 ms
41,708 KB
testcase_09 AC 146 ms
41,872 KB
testcase_10 AC 148 ms
41,712 KB
testcase_11 AC 131 ms
41,552 KB
testcase_12 AC 130 ms
41,040 KB
testcase_13 AC 129 ms
41,376 KB
testcase_14 AC 131 ms
41,204 KB
testcase_15 AC 187 ms
42,416 KB
testcase_16 AC 188 ms
42,612 KB
testcase_17 AC 192 ms
42,536 KB
testcase_18 AC 157 ms
41,692 KB
testcase_19 AC 188 ms
42,104 KB
testcase_20 AC 189 ms
42,252 KB
testcase_21 AC 182 ms
42,012 KB
testcase_22 AC 191 ms
42,272 KB
testcase_23 AC 168 ms
42,088 KB
testcase_24 AC 165 ms
41,672 KB
testcase_25 AC 187 ms
42,368 KB
testcase_26 AC 183 ms
42,096 KB
testcase_27 AC 176 ms
42,444 KB
testcase_28 AC 139 ms
41,512 KB
testcase_29 AC 175 ms
41,844 KB
testcase_30 AC 141 ms
41,340 KB
testcase_31 AC 183 ms
42,444 KB
testcase_32 AC 142 ms
41,488 KB
testcase_33 AC 186 ms
42,360 KB
testcase_34 AC 141 ms
41,804 KB
testcase_35 AC 182 ms
42,360 KB
testcase_36 AC 167 ms
41,996 KB
testcase_37 AC 147 ms
41,728 KB
testcase_38 AC 164 ms
41,908 KB
testcase_39 AC 158 ms
41,552 KB
testcase_40 AC 190 ms
42,628 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 a = sc.nextInt();
        double[] b = new double[a];
        for (int i = 0; i < a; i++) {
            b[i] = sc.nextInt();
        }
        Arrays.sort(b);
        if (a % 2 == 1) {
            System.out.println(b[a / 2]);
        } else {
            System.out.println((b[a / 2] + b[a / 2 - 1]) / 2);
        }
    }
}
0