結果

問題 No.275 中央値を求めよ
ユーザー S1hoS1ho
提出日時 2017-02-19 14:53:13
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 763 bytes
コンパイル時間 3,628 ms
コンパイル使用メモリ 76,588 KB
実行使用メモリ 54,860 KB
最終ジャッジ日時 2024-06-09 14:22:14
合計ジャッジ時間 10,481 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 114 ms
54,008 KB
testcase_04 AC 118 ms
54,156 KB
testcase_05 WA -
testcase_06 AC 128 ms
54,404 KB
testcase_07 AC 162 ms
54,684 KB
testcase_08 AC 130 ms
54,028 KB
testcase_09 AC 130 ms
54,228 KB
testcase_10 WA -
testcase_11 AC 120 ms
54,164 KB
testcase_12 AC 123 ms
54,008 KB
testcase_13 AC 119 ms
52,780 KB
testcase_14 AC 124 ms
53,992 KB
testcase_15 WA -
testcase_16 AC 167 ms
54,320 KB
testcase_17 AC 177 ms
54,472 KB
testcase_18 WA -
testcase_19 AC 154 ms
54,340 KB
testcase_20 AC 176 ms
54,424 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 156 ms
54,300 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 164 ms
54,576 KB
testcase_27 AC 161 ms
54,720 KB
testcase_28 AC 125 ms
54,060 KB
testcase_29 AC 146 ms
54,100 KB
testcase_30 AC 126 ms
54,260 KB
testcase_31 AC 170 ms
54,352 KB
testcase_32 AC 133 ms
54,140 KB
testcase_33 AC 167 ms
54,228 KB
testcase_34 AC 121 ms
53,992 KB
testcase_35 AC 170 ms
54,300 KB
testcase_36 AC 169 ms
54,296 KB
testcase_37 AC 139 ms
54,084 KB
testcase_38 AC 152 ms
54,316 KB
testcase_39 AC 146 ms
54,316 KB
testcase_40 AC 183 ms
54,504 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;
            System.out.println(String.format("%.1f", num));
        }else{
            int num = list.get(list.size()/2);
            System.out.println(num);
        }
    }
    
}
0