結果

問題 No.275 中央値を求めよ
ユーザー kanotownkanotown
提出日時 2018-12-14 16:09:27
言語 Java21
(openjdk 21)
結果
AC  
実行時間 190 ms / 1,000 ms
コード長 588 bytes
コンパイル時間 3,815 ms
コンパイル使用メモリ 75,156 KB
実行使用メモリ 54,720 KB
最終ジャッジ日時 2024-09-25 05:11:22
合計ジャッジ時間 11,482 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
54,108 KB
testcase_01 AC 130 ms
54,288 KB
testcase_02 AC 140 ms
54,340 KB
testcase_03 AC 129 ms
54,188 KB
testcase_04 AC 126 ms
54,164 KB
testcase_05 AC 129 ms
54,156 KB
testcase_06 AC 139 ms
54,204 KB
testcase_07 AC 177 ms
54,392 KB
testcase_08 AC 145 ms
54,148 KB
testcase_09 AC 146 ms
54,200 KB
testcase_10 AC 145 ms
54,236 KB
testcase_11 AC 131 ms
54,168 KB
testcase_12 AC 129 ms
54,016 KB
testcase_13 AC 133 ms
54,196 KB
testcase_14 AC 133 ms
54,056 KB
testcase_15 AC 190 ms
54,620 KB
testcase_16 AC 188 ms
54,200 KB
testcase_17 AC 185 ms
54,372 KB
testcase_18 AC 161 ms
54,524 KB
testcase_19 AC 182 ms
54,372 KB
testcase_20 AC 180 ms
54,304 KB
testcase_21 AC 175 ms
54,252 KB
testcase_22 AC 188 ms
54,368 KB
testcase_23 AC 165 ms
54,260 KB
testcase_24 AC 152 ms
54,604 KB
testcase_25 AC 187 ms
54,532 KB
testcase_26 AC 184 ms
54,720 KB
testcase_27 AC 180 ms
54,216 KB
testcase_28 AC 141 ms
54,376 KB
testcase_29 AC 166 ms
54,504 KB
testcase_30 AC 142 ms
54,052 KB
testcase_31 AC 175 ms
54,408 KB
testcase_32 AC 144 ms
54,252 KB
testcase_33 AC 181 ms
54,240 KB
testcase_34 AC 140 ms
54,348 KB
testcase_35 AC 174 ms
54,356 KB
testcase_36 AC 166 ms
54,244 KB
testcase_37 AC 148 ms
54,152 KB
testcase_38 AC 167 ms
54,424 KB
testcase_39 AC 153 ms
54,376 KB
testcase_40 AC 183 ms
54,516 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.Scanner;
public class No275 {
    public static void main(String[] args) {
        // 標準入力
        Scanner sc = new Scanner(System.in);
            
        int n = sc.nextInt();
        int[] a = new int[n];
        float result;
        
        for (int i = 0; i < n; i++) {
            a[i] = sc.nextInt();
        }
        Arrays.sort(a);
        
        if (n % 2 == 0) {
            result = (a[n / 2] + a[n / 2 - 1]) / 2.0f;
        } else {
            result = a[n / 2];
        }
        System.out.println(result);
    }
}
0