結果

問題 No.275 中央値を求めよ
ユーザー Hiroaki KonoHiroaki Kono
提出日時 2017-10-26 21:36:48
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 654 bytes
コンパイル時間 3,420 ms
コンパイル使用メモリ 75,952 KB
実行使用メモリ 42,864 KB
最終ジャッジ日時 2024-11-21 20:11:01
合計ジャッジ時間 11,010 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 124 ms
41,184 KB
testcase_04 AC 114 ms
40,756 KB
testcase_05 WA -
testcase_06 AC 133 ms
41,328 KB
testcase_07 AC 162 ms
42,072 KB
testcase_08 AC 143 ms
41,628 KB
testcase_09 AC 133 ms
40,720 KB
testcase_10 WA -
testcase_11 AC 110 ms
39,996 KB
testcase_12 AC 123 ms
40,140 KB
testcase_13 AC 110 ms
39,912 KB
testcase_14 AC 111 ms
40,220 KB
testcase_15 WA -
testcase_16 AC 179 ms
42,528 KB
testcase_17 AC 181 ms
42,436 KB
testcase_18 WA -
testcase_19 AC 175 ms
42,192 KB
testcase_20 AC 171 ms
42,136 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 170 ms
41,920 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 178 ms
42,216 KB
testcase_27 AC 172 ms
42,164 KB
testcase_28 AC 133 ms
41,264 KB
testcase_29 AC 164 ms
41,744 KB
testcase_30 AC 129 ms
41,068 KB
testcase_31 AC 178 ms
42,324 KB
testcase_32 AC 138 ms
41,568 KB
testcase_33 AC 182 ms
42,420 KB
testcase_34 AC 129 ms
41,200 KB
testcase_35 AC 173 ms
42,056 KB
testcase_36 AC 168 ms
42,016 KB
testcase_37 AC 137 ms
41,228 KB
testcase_38 AC 160 ms
41,624 KB
testcase_39 AC 148 ms
41,536 KB
testcase_40 AC 171 ms
42,476 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.text.DecimalFormat;
import java.util.Arrays;
import java.util.Scanner;

public class No275 {

    public static void main(String[] args) {
        Scanner s = new Scanner(System.in);
        int count = s.nextInt();
        int[] arr = new int[count];
        for (int i = 0; i < count; i++) {
            arr[i] = s.nextInt();
        }
        Arrays.sort(arr);

        double median;
        if (count % 2 == 0) {
            median = (double) ((arr[count / 2] + arr[count / 2 - 1]) / 2);
        } else {
            median = (double) arr[count / 2];
        }
        System.out.println(new DecimalFormat(".#").format(median));
    }
}
0