結果

問題 No.275 中央値を求めよ
ユーザー kohaku_kohakukohaku_kohaku
提出日時 2016-11-09 22:49:49
言語 Java21
(openjdk 21)
結果
AC  
実行時間 185 ms / 1,000 ms
コード長 483 bytes
コンパイル時間 2,792 ms
コンパイル使用メモリ 77,136 KB
実行使用メモリ 42,956 KB
最終ジャッジ日時 2024-06-25 00:08:57
合計ジャッジ時間 9,307 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 115 ms
41,508 KB
testcase_01 AC 120 ms
41,452 KB
testcase_02 AC 135 ms
41,544 KB
testcase_03 AC 111 ms
41,356 KB
testcase_04 AC 123 ms
41,320 KB
testcase_05 AC 124 ms
41,156 KB
testcase_06 AC 137 ms
41,340 KB
testcase_07 AC 173 ms
42,224 KB
testcase_08 AC 139 ms
41,580 KB
testcase_09 AC 139 ms
41,432 KB
testcase_10 AC 142 ms
41,820 KB
testcase_11 AC 127 ms
41,304 KB
testcase_12 AC 125 ms
41,184 KB
testcase_13 AC 114 ms
41,332 KB
testcase_14 AC 129 ms
41,140 KB
testcase_15 AC 180 ms
42,840 KB
testcase_16 AC 177 ms
42,352 KB
testcase_17 AC 185 ms
42,956 KB
testcase_18 AC 151 ms
41,516 KB
testcase_19 AC 175 ms
42,332 KB
testcase_20 AC 183 ms
42,416 KB
testcase_21 AC 170 ms
42,072 KB
testcase_22 AC 180 ms
42,192 KB
testcase_23 AC 168 ms
42,064 KB
testcase_24 AC 160 ms
41,780 KB
testcase_25 AC 174 ms
42,872 KB
testcase_26 AC 183 ms
42,684 KB
testcase_27 AC 174 ms
42,260 KB
testcase_28 AC 140 ms
41,568 KB
testcase_29 AC 169 ms
42,132 KB
testcase_30 AC 139 ms
41,300 KB
testcase_31 AC 180 ms
42,260 KB
testcase_32 AC 149 ms
41,804 KB
testcase_33 AC 180 ms
42,008 KB
testcase_34 AC 137 ms
41,576 KB
testcase_35 AC 155 ms
42,120 KB
testcase_36 AC 166 ms
41,968 KB
testcase_37 AC 141 ms
41,496 KB
testcase_38 AC 146 ms
41,612 KB
testcase_39 AC 157 ms
42,172 KB
testcase_40 AC 176 ms
42,668 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 [] A = new int [N];
        for(int i=0; i<N; i++){
            A[i] = sc.nextInt();
        }
        Arrays.sort(A);
        
        if(N%2==1){
            System.out.println(A[(N-1)/2]);
        }else{
            double r = ( A[N/2-1] + A[N/2] )/2.0 ;
            System.out.println(r);
        }
    }
}
0