結果

問題 No.275 中央値を求めよ
ユーザー syusyu
提出日時 2020-08-25 20:01:06
言語 Java21
(openjdk 21)
結果
AC  
実行時間 200 ms / 1,000 ms
コード長 619 bytes
コンパイル時間 2,623 ms
コンパイル使用メモリ 75,436 KB
実行使用メモリ 54,912 KB
最終ジャッジ日時 2024-11-06 11:39:34
合計ジャッジ時間 10,398 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 135 ms
54,356 KB
testcase_01 AC 134 ms
54,036 KB
testcase_02 AC 150 ms
54,252 KB
testcase_03 AC 136 ms
54,192 KB
testcase_04 AC 135 ms
54,052 KB
testcase_05 AC 135 ms
54,092 KB
testcase_06 AC 146 ms
54,356 KB
testcase_07 AC 188 ms
54,296 KB
testcase_08 AC 149 ms
54,412 KB
testcase_09 AC 153 ms
54,092 KB
testcase_10 AC 149 ms
54,364 KB
testcase_11 AC 135 ms
54,260 KB
testcase_12 AC 135 ms
54,088 KB
testcase_13 AC 134 ms
53,804 KB
testcase_14 AC 139 ms
54,176 KB
testcase_15 AC 193 ms
54,540 KB
testcase_16 AC 195 ms
54,452 KB
testcase_17 AC 200 ms
54,384 KB
testcase_18 AC 174 ms
54,912 KB
testcase_19 AC 193 ms
54,572 KB
testcase_20 AC 188 ms
54,408 KB
testcase_21 AC 169 ms
54,560 KB
testcase_22 AC 188 ms
54,628 KB
testcase_23 AC 180 ms
54,236 KB
testcase_24 AC 172 ms
54,220 KB
testcase_25 AC 193 ms
54,504 KB
testcase_26 AC 189 ms
54,144 KB
testcase_27 AC 184 ms
54,464 KB
testcase_28 AC 144 ms
54,220 KB
testcase_29 AC 182 ms
54,428 KB
testcase_30 AC 149 ms
54,292 KB
testcase_31 AC 192 ms
54,868 KB
testcase_32 AC 152 ms
54,264 KB
testcase_33 AC 190 ms
54,768 KB
testcase_34 AC 151 ms
54,204 KB
testcase_35 AC 187 ms
54,512 KB
testcase_36 AC 177 ms
54,132 KB
testcase_37 AC 153 ms
54,548 KB
testcase_38 AC 173 ms
54,336 KB
testcase_39 AC 170 ms
54,308 KB
testcase_40 AC 197 ms
54,760 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args){
        Scanner sc=new Scanner(System.in);
        int n=sc.nextInt();
        int[] numbers=new int[n];
        for(int i=0;i<n;i++){
            numbers[i]=sc.nextInt();
        }
        Arrays.sort(numbers);
        //System.out.println(Arrays.toString(numbers));
        
        int index=n/2;
        
        if(numbers.length%2==1){
            System.out.println(numbers[index]);
        }else{
            double median=(double)(numbers[index-1]+numbers[index])/2;
            System.out.println(median);
        }
    }
}
0