結果

問題 No.275 中央値を求めよ
ユーザー jonki324jonki324
提出日時 2018-06-03 16:58:35
言語 Java21
(openjdk 21)
結果
AC  
実行時間 186 ms / 1,000 ms
コード長 532 bytes
コンパイル時間 2,141 ms
コンパイル使用メモリ 74,276 KB
実行使用メモリ 42,896 KB
最終ジャッジ日時 2024-06-25 01:39:37
合計ジャッジ時間 9,623 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
41,332 KB
testcase_01 AC 123 ms
41,364 KB
testcase_02 AC 137 ms
41,864 KB
testcase_03 AC 137 ms
41,072 KB
testcase_04 AC 127 ms
41,264 KB
testcase_05 AC 114 ms
41,744 KB
testcase_06 AC 139 ms
41,524 KB
testcase_07 AC 174 ms
41,980 KB
testcase_08 AC 137 ms
41,512 KB
testcase_09 AC 141 ms
41,440 KB
testcase_10 AC 146 ms
41,988 KB
testcase_11 AC 129 ms
41,328 KB
testcase_12 AC 129 ms
41,240 KB
testcase_13 AC 126 ms
41,376 KB
testcase_14 AC 127 ms
41,652 KB
testcase_15 AC 179 ms
42,800 KB
testcase_16 AC 182 ms
42,896 KB
testcase_17 AC 183 ms
42,572 KB
testcase_18 AC 155 ms
41,748 KB
testcase_19 AC 178 ms
42,240 KB
testcase_20 AC 175 ms
42,604 KB
testcase_21 AC 170 ms
42,004 KB
testcase_22 AC 183 ms
42,256 KB
testcase_23 AC 173 ms
42,112 KB
testcase_24 AC 158 ms
41,904 KB
testcase_25 AC 176 ms
42,544 KB
testcase_26 AC 180 ms
42,264 KB
testcase_27 AC 182 ms
42,228 KB
testcase_28 AC 141 ms
41,612 KB
testcase_29 AC 169 ms
41,992 KB
testcase_30 AC 140 ms
41,732 KB
testcase_31 AC 179 ms
42,384 KB
testcase_32 AC 139 ms
41,588 KB
testcase_33 AC 174 ms
42,136 KB
testcase_34 AC 132 ms
41,456 KB
testcase_35 AC 179 ms
42,300 KB
testcase_36 AC 172 ms
42,300 KB
testcase_37 AC 143 ms
41,636 KB
testcase_38 AC 159 ms
41,748 KB
testcase_39 AC 160 ms
42,028 KB
testcase_40 AC 186 ms
42,620 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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