結果

問題 No.275 中央値を求めよ
ユーザー fkwnw3_1243fkwnw3_1243
提出日時 2017-05-02 21:46:03
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 829 bytes
コンパイル時間 2,007 ms
コンパイル使用メモリ 75,400 KB
実行使用メモリ 37,376 KB
最終ジャッジ日時 2024-09-14 04:47:21
合計ジャッジ時間 5,525 ms
ジャッジサーバーID
(参考情報)
judge4 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
37,120 KB
testcase_01 AC 50 ms
37,176 KB
testcase_02 AC 50 ms
37,276 KB
testcase_03 WA -
testcase_04 AC 50 ms
37,248 KB
testcase_05 AC 50 ms
37,208 KB
testcase_06 AC 52 ms
37,112 KB
testcase_07 AC 53 ms
36,908 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 52 ms
36,892 KB
testcase_11 RE -
testcase_12 AC 50 ms
36,816 KB
testcase_13 WA -
testcase_14 AC 52 ms
37,248 KB
testcase_15 AC 56 ms
37,216 KB
testcase_16 AC 54 ms
37,084 KB
testcase_17 AC 54 ms
37,112 KB
testcase_18 AC 52 ms
37,184 KB
testcase_19 WA -
testcase_20 AC 53 ms
36,636 KB
testcase_21 AC 53 ms
37,064 KB
testcase_22 AC 54 ms
37,284 KB
testcase_23 WA -
testcase_24 AC 53 ms
37,084 KB
testcase_25 AC 54 ms
37,208 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 54 ms
37,196 KB
testcase_30 AC 51 ms
36,816 KB
testcase_31 AC 53 ms
36,856 KB
testcase_32 AC 52 ms
37,304 KB
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 AC 52 ms
37,192 KB
testcase_38 AC 52 ms
36,968 KB
testcase_39 WA -
testcase_40 AC 56 ms
37,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.Arrays;

import static java.lang.System.in;


public class Main {
    public static void main(String[] args) throws IOException {
        BufferedReader reader = new BufferedReader(new InputStreamReader(in));
        int N = Integer.parseInt(reader.readLine());
        int[] table = new int[N];
        String[] inputs = reader.readLine().split(" ");
        for (int i = 0; i < N; i++) {
            table[i] = Integer.parseInt(inputs[i]);
        }
        Arrays.sort(table);
        if (N % 2 == 0) {
            int left = table[(N/2)-1];
            int right = table[(N/2)];
            System.out.println((left + right) / 2.0);
        } else {
            System.out.println(table[(N/2)+1]);
        }
    }
}
0