結果

問題 No.275 中央値を求めよ
ユーザー S1hoS1ho
提出日時 2017-02-19 15:04:09
言語 Java21
(openjdk 21)
結果
AC  
実行時間 191 ms / 1,000 ms
コード長 766 bytes
コンパイル時間 3,522 ms
コンパイル使用メモリ 76,612 KB
実行使用メモリ 42,864 KB
最終ジャッジ日時 2024-06-25 00:18:41
合計ジャッジ時間 11,106 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
41,388 KB
testcase_01 AC 128 ms
41,272 KB
testcase_02 AC 139 ms
41,380 KB
testcase_03 AC 111 ms
39,704 KB
testcase_04 AC 116 ms
40,152 KB
testcase_05 AC 127 ms
41,240 KB
testcase_06 AC 138 ms
41,464 KB
testcase_07 AC 175 ms
42,016 KB
testcase_08 AC 141 ms
41,356 KB
testcase_09 AC 139 ms
41,684 KB
testcase_10 AC 148 ms
41,772 KB
testcase_11 AC 128 ms
41,124 KB
testcase_12 AC 126 ms
41,160 KB
testcase_13 AC 122 ms
41,152 KB
testcase_14 AC 127 ms
41,240 KB
testcase_15 AC 190 ms
42,540 KB
testcase_16 AC 190 ms
42,864 KB
testcase_17 AC 184 ms
42,272 KB
testcase_18 AC 158 ms
41,684 KB
testcase_19 AC 182 ms
41,840 KB
testcase_20 AC 181 ms
41,948 KB
testcase_21 AC 174 ms
41,936 KB
testcase_22 AC 190 ms
42,496 KB
testcase_23 AC 157 ms
42,076 KB
testcase_24 AC 150 ms
41,472 KB
testcase_25 AC 191 ms
42,616 KB
testcase_26 AC 183 ms
42,360 KB
testcase_27 AC 176 ms
42,120 KB
testcase_28 AC 136 ms
41,164 KB
testcase_29 AC 168 ms
41,904 KB
testcase_30 AC 136 ms
41,376 KB
testcase_31 AC 187 ms
42,100 KB
testcase_32 AC 142 ms
41,548 KB
testcase_33 AC 181 ms
42,220 KB
testcase_34 AC 137 ms
41,524 KB
testcase_35 AC 183 ms
42,092 KB
testcase_36 AC 173 ms
41,880 KB
testcase_37 AC 146 ms
41,472 KB
testcase_38 AC 155 ms
41,616 KB
testcase_39 AC 157 ms
41,668 KB
testcase_40 AC 191 ms
42,204 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.ArrayList;
import java.util.Collections;
import java.util.Scanner;

public class CenterNum {

    public static void main(String[] args) {
        
        Scanner scanner = new Scanner(System.in);
        
        int n = scanner.nextInt();
        
        ArrayList<Integer> list = new ArrayList();
        
        for(int i=0;i<n;i++){
            list.add(scanner.nextInt());
        }
        
        Collections.sort(list);
        
   
        if(list.size() % 2 == 0){
            float num = (list.get(list.size()/2 - 1) + list.get(list.size()/2)) / 2.0f;
            System.out.println(String.format("%.1f", num));
        }else{
            int num = list.get(list.size()/2);
            System.out.println(num);
        }
    }
    
}
0