結果

問題 No.275 中央値を求めよ
ユーザー hippolover02hippolover02
提出日時 2022-07-19 16:01:18
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 612 bytes
コンパイル時間 2,172 ms
コンパイル使用メモリ 74,292 KB
実行使用メモリ 42,780 KB
最終ジャッジ日時 2024-07-01 19:04:52
合計ジャッジ時間 10,048 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 RE -
testcase_02 WA -
testcase_03 AC 128 ms
41,016 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 146 ms
41,600 KB
testcase_09 AC 147 ms
41,428 KB
testcase_10 WA -
testcase_11 AC 130 ms
41,192 KB
testcase_12 RE -
testcase_13 AC 130 ms
41,140 KB
testcase_14 AC 127 ms
41,080 KB
testcase_15 WA -
testcase_16 AC 186 ms
42,588 KB
testcase_17 AC 184 ms
42,448 KB
testcase_18 WA -
testcase_19 AC 174 ms
42,460 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 177 ms
41,868 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 182 ms
42,328 KB
testcase_27 AC 184 ms
42,076 KB
testcase_28 AC 140 ms
41,616 KB
testcase_29 AC 177 ms
41,648 KB
testcase_30 AC 143 ms
41,448 KB
testcase_31 WA -
testcase_32 AC 144 ms
41,412 KB
testcase_33 AC 187 ms
42,216 KB
testcase_34 AC 142 ms
41,204 KB
testcase_35 AC 181 ms
41,940 KB
testcase_36 AC 168 ms
41,824 KB
testcase_37 WA -
testcase_38 WA -
testcase_39 AC 162 ms
41,616 KB
testcase_40 AC 188 ms
42,592 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
        int num = sc.nextInt();
        int[] arr = new int[num];
        for(int i=0;i<num;i++){
            arr[i] = sc.nextInt();
        }
        // ソート
        Arrays.sort(arr);
        int cnt = num / 2;
        double center = 0;
        // 中央値算出
        if(num % 2 == 0){
            // 偶数
            center = (arr[cnt] + arr[cnt + 1]) / 2;
        }else {
            // 奇数
            center = arr[cnt];
        }
        System.out.println(center);
	}
}
0