結果

問題 No.275 中央値を求めよ
ユーザー face4face4
提出日時 2018-04-10 00:10:39
言語 Java21
(openjdk 21)
結果
AC  
実行時間 138 ms / 1,000 ms
コード長 704 bytes
コンパイル時間 2,156 ms
コンパイル使用メモリ 75,376 KB
実行使用メモリ 41,904 KB
最終ジャッジ日時 2024-06-25 01:13:12
合計ジャッジ時間 8,634 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
41,548 KB
testcase_01 AC 124 ms
41,340 KB
testcase_02 AC 126 ms
40,992 KB
testcase_03 AC 123 ms
41,088 KB
testcase_04 AC 124 ms
41,188 KB
testcase_05 AC 124 ms
40,944 KB
testcase_06 AC 123 ms
41,240 KB
testcase_07 AC 126 ms
41,628 KB
testcase_08 AC 125 ms
41,252 KB
testcase_09 AC 130 ms
40,972 KB
testcase_10 AC 128 ms
41,456 KB
testcase_11 AC 125 ms
41,344 KB
testcase_12 AC 125 ms
41,116 KB
testcase_13 AC 126 ms
41,244 KB
testcase_14 AC 124 ms
41,184 KB
testcase_15 AC 137 ms
40,832 KB
testcase_16 AC 138 ms
40,972 KB
testcase_17 AC 131 ms
41,496 KB
testcase_18 AC 129 ms
41,368 KB
testcase_19 AC 128 ms
41,232 KB
testcase_20 AC 134 ms
41,084 KB
testcase_21 AC 127 ms
40,948 KB
testcase_22 AC 133 ms
41,332 KB
testcase_23 AC 131 ms
41,624 KB
testcase_24 AC 125 ms
41,472 KB
testcase_25 AC 131 ms
41,220 KB
testcase_26 AC 129 ms
41,904 KB
testcase_27 AC 127 ms
41,348 KB
testcase_28 AC 125 ms
40,812 KB
testcase_29 AC 130 ms
41,340 KB
testcase_30 AC 126 ms
41,072 KB
testcase_31 AC 129 ms
41,536 KB
testcase_32 AC 126 ms
41,024 KB
testcase_33 AC 130 ms
41,156 KB
testcase_34 AC 123 ms
41,540 KB
testcase_35 AC 131 ms
41,236 KB
testcase_36 AC 132 ms
41,556 KB
testcase_37 AC 128 ms
41,144 KB
testcase_38 AC 126 ms
41,248 KB
testcase_39 AC 123 ms
41,164 KB
testcase_40 AC 130 ms
41,596 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

class Main{
    public static void main(String[] args) throws IOException{
        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
        int n = Integer.parseInt(br.readLine());
        int[] arr = new int[n];
        String[] input = br.readLine().split(" ");
        for(int i = 0; i < n; i++){
            arr[i] = Integer.parseInt(input[i]);
        }

        Arrays.sort(arr);

        if(n%2 == 0){
            System.out.printf("%.1f%n", (arr[n/2] + arr[n/2-1])/2.0);
        }else{
            System.out.printf("%d%n", arr[n/2]);
        }
    }
}
0