結果

問題 No.275 中央値を求めよ
ユーザー GrenacheGrenache
提出日時 2015-09-04 22:24:25
言語 Java21
(openjdk 21)
結果
AC  
実行時間 200 ms / 1,000 ms
コード長 574 bytes
コンパイル時間 3,851 ms
コンパイル使用メモリ 75,548 KB
実行使用メモリ 43,720 KB
最終ジャッジ日時 2024-06-24 23:07:40
合計ジャッジ時間 11,771 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
41,524 KB
testcase_01 AC 133 ms
41,344 KB
testcase_02 AC 145 ms
41,516 KB
testcase_03 AC 134 ms
41,376 KB
testcase_04 AC 135 ms
41,740 KB
testcase_05 AC 136 ms
41,908 KB
testcase_06 AC 143 ms
41,472 KB
testcase_07 AC 183 ms
41,984 KB
testcase_08 AC 148 ms
41,840 KB
testcase_09 AC 153 ms
41,936 KB
testcase_10 AC 147 ms
42,052 KB
testcase_11 AC 137 ms
41,668 KB
testcase_12 AC 134 ms
41,556 KB
testcase_13 AC 135 ms
41,468 KB
testcase_14 AC 135 ms
41,796 KB
testcase_15 AC 200 ms
42,744 KB
testcase_16 AC 194 ms
42,836 KB
testcase_17 AC 195 ms
42,600 KB
testcase_18 AC 168 ms
41,976 KB
testcase_19 AC 190 ms
42,304 KB
testcase_20 AC 191 ms
42,660 KB
testcase_21 AC 178 ms
42,316 KB
testcase_22 AC 192 ms
42,580 KB
testcase_23 AC 183 ms
42,316 KB
testcase_24 AC 160 ms
42,032 KB
testcase_25 AC 194 ms
42,692 KB
testcase_26 AC 193 ms
42,236 KB
testcase_27 AC 192 ms
42,716 KB
testcase_28 AC 147 ms
41,984 KB
testcase_29 AC 182 ms
42,336 KB
testcase_30 AC 147 ms
41,688 KB
testcase_31 AC 194 ms
42,324 KB
testcase_32 AC 152 ms
41,900 KB
testcase_33 AC 193 ms
42,676 KB
testcase_34 AC 147 ms
41,652 KB
testcase_35 AC 193 ms
42,436 KB
testcase_36 AC 177 ms
43,720 KB
testcase_37 AC 154 ms
41,636 KB
testcase_38 AC 161 ms
42,036 KB
testcase_39 AC 162 ms
42,140 KB
testcase_40 AC 189 ms
42,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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


public class Main_yukicoder275 {

    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);

        int n = sc.nextInt();
        int[] a = new int[n];

        for (int i = 0; i < n; i++) {
        	a[i] = sc.nextInt();
        }
        Arrays.sort(a);

        double ret;
        if (n % 2 != 0) {
        	ret = a[n / 2];
        } else {
        	ret = ((double)a[n / 2] + a[n / 2 - 1]) / 2;
        }
        
        System.out.printf("%.2f\n", ret);

        sc.close();
    }
}
0