結果

問題 No.275 中央値を求めよ
ユーザー cande398cande398
提出日時 2017-10-11 16:53:40
言語 Java21
(openjdk 21)
結果
AC  
実行時間 201 ms / 1,000 ms
コード長 418 bytes
コンパイル時間 2,089 ms
コンパイル使用メモリ 74,976 KB
実行使用メモリ 42,912 KB
最終ジャッジ日時 2024-06-25 00:41:59
合計ジャッジ時間 9,985 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
41,408 KB
testcase_01 AC 130 ms
41,280 KB
testcase_02 AC 146 ms
41,584 KB
testcase_03 AC 134 ms
41,296 KB
testcase_04 AC 119 ms
40,232 KB
testcase_05 AC 133 ms
41,416 KB
testcase_06 AC 139 ms
41,616 KB
testcase_07 AC 182 ms
42,024 KB
testcase_08 AC 146 ms
41,536 KB
testcase_09 AC 146 ms
41,640 KB
testcase_10 AC 153 ms
41,760 KB
testcase_11 AC 134 ms
41,128 KB
testcase_12 AC 134 ms
41,412 KB
testcase_13 AC 132 ms
41,324 KB
testcase_14 AC 132 ms
41,304 KB
testcase_15 AC 195 ms
42,616 KB
testcase_16 AC 201 ms
42,396 KB
testcase_17 AC 194 ms
42,912 KB
testcase_18 AC 171 ms
41,532 KB
testcase_19 AC 186 ms
42,220 KB
testcase_20 AC 193 ms
42,208 KB
testcase_21 AC 177 ms
42,148 KB
testcase_22 AC 187 ms
42,424 KB
testcase_23 AC 182 ms
42,020 KB
testcase_24 AC 168 ms
41,728 KB
testcase_25 AC 193 ms
42,400 KB
testcase_26 AC 193 ms
42,404 KB
testcase_27 AC 184 ms
42,632 KB
testcase_28 AC 142 ms
41,376 KB
testcase_29 AC 177 ms
41,892 KB
testcase_30 AC 141 ms
41,264 KB
testcase_31 AC 189 ms
42,364 KB
testcase_32 AC 146 ms
41,556 KB
testcase_33 AC 184 ms
42,112 KB
testcase_34 AC 140 ms
41,336 KB
testcase_35 AC 180 ms
42,196 KB
testcase_36 AC 180 ms
41,888 KB
testcase_37 AC 156 ms
41,696 KB
testcase_38 AC 164 ms
41,764 KB
testcase_39 AC 158 ms
41,652 KB
testcase_40 AC 200 ms
42,188 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[] line = new int[num];
       for(int i=0;i<num;i++){
           line[i] = sc.nextInt();
       }
       Arrays.sort(line);
       if(num%2==0)System.out.println((line[num/2]+line[num/2-1])/2.0);
       else System.out.println(line[num/2]);
    }
}
0