結果

問題 No.275 中央値を求めよ
ユーザー Daigo HIROOKADaigo HIROOKA
提出日時 2018-05-11 04:39:48
言語 Java21
(openjdk 21)
結果
AC  
実行時間 261 ms / 1,000 ms
コード長 547 bytes
コンパイル時間 3,791 ms
コンパイル使用メモリ 75,360 KB
実行使用メモリ 48,772 KB
最終ジャッジ日時 2024-06-25 01:27:56
合計ジャッジ時間 12,849 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 140 ms
42,020 KB
testcase_01 AC 134 ms
41,756 KB
testcase_02 AC 171 ms
42,680 KB
testcase_03 AC 136 ms
42,004 KB
testcase_04 AC 135 ms
42,004 KB
testcase_05 AC 135 ms
41,440 KB
testcase_06 AC 168 ms
42,256 KB
testcase_07 AC 237 ms
45,796 KB
testcase_08 AC 179 ms
43,144 KB
testcase_09 AC 200 ms
43,024 KB
testcase_10 AC 196 ms
42,880 KB
testcase_11 AC 136 ms
41,744 KB
testcase_12 AC 139 ms
41,508 KB
testcase_13 AC 150 ms
42,012 KB
testcase_14 AC 136 ms
41,580 KB
testcase_15 AC 254 ms
47,440 KB
testcase_16 AC 255 ms
47,748 KB
testcase_17 AC 251 ms
47,264 KB
testcase_18 AC 214 ms
44,812 KB
testcase_19 AC 234 ms
45,924 KB
testcase_20 AC 235 ms
46,228 KB
testcase_21 AC 222 ms
44,640 KB
testcase_22 AC 246 ms
47,204 KB
testcase_23 AC 219 ms
45,136 KB
testcase_24 AC 212 ms
43,428 KB
testcase_25 AC 260 ms
48,772 KB
testcase_26 AC 258 ms
47,252 KB
testcase_27 AC 233 ms
45,936 KB
testcase_28 AC 156 ms
42,528 KB
testcase_29 AC 215 ms
45,204 KB
testcase_30 AC 161 ms
42,632 KB
testcase_31 AC 254 ms
46,972 KB
testcase_32 AC 199 ms
42,588 KB
testcase_33 AC 249 ms
47,196 KB
testcase_34 AC 168 ms
42,148 KB
testcase_35 AC 240 ms
47,120 KB
testcase_36 AC 221 ms
45,660 KB
testcase_37 AC 191 ms
42,612 KB
testcase_38 AC 208 ms
44,424 KB
testcase_39 AC 220 ms
44,380 KB
testcase_40 AC 261 ms
47,736 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
import java.util.Arrays;

public class GetMed{
    public static void main(String[] args){
        Scanner sc = new Scanner(System.in);
        int N = sc.nextInt();
        double[] A = new double[N];
        for(int i=0; i<N; i++){
            A[i] = sc.nextDouble();
        }
        Arrays.sort(A);
        if(N%2 == 0){
            System.out.println((A[N/2-1]+A[N/2])/2);
        }else{
            System.out.println(A[(N-1)/2]);
        }
    }
}

0