結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 118 ms
39,852 KB
testcase_04 AC 129 ms
41,216 KB
testcase_05 WA -
testcase_06 AC 138 ms
41,460 KB
testcase_07 AC 180 ms
42,012 KB
testcase_08 AC 144 ms
41,412 KB
testcase_09 AC 144 ms
41,464 KB
testcase_10 WA -
testcase_11 AC 129 ms
41,268 KB
testcase_12 AC 118 ms
40,120 KB
testcase_13 AC 128 ms
41,064 KB
testcase_14 AC 129 ms
40,956 KB
testcase_15 WA -
testcase_16 AC 187 ms
42,344 KB
testcase_17 AC 191 ms
42,592 KB
testcase_18 WA -
testcase_19 AC 182 ms
42,260 KB
testcase_20 AC 184 ms
42,064 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 173 ms
41,872 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 186 ms
42,288 KB
testcase_27 AC 182 ms
42,248 KB
testcase_28 AC 140 ms
41,084 KB
testcase_29 AC 168 ms
41,568 KB
testcase_30 AC 142 ms
41,708 KB
testcase_31 AC 189 ms
42,388 KB
testcase_32 AC 149 ms
41,400 KB
testcase_33 AC 183 ms
41,820 KB
testcase_34 AC 138 ms
41,272 KB
testcase_35 AC 182 ms
42,052 KB
testcase_36 AC 168 ms
41,620 KB
testcase_37 AC 147 ms
41,420 KB
testcase_38 AC 158 ms
41,472 KB
testcase_39 AC 163 ms
41,412 KB
testcase_40 AC 179 ms
42,384 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;
        // 中央値算出
        if(num % 2 == 0){
            // 偶数
            center = (arr[cnt] + arr[cnt - 1]) / 2;
        }else {
            // 奇数
            center = arr[cnt];
        }
        System.out.println(center);
	}
}
0