結果

問題 No.275 中央値を求めよ
ユーザー 2ch_GreenApple2ch_GreenApple
提出日時 2015-09-06 09:13:06
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 509 bytes
コンパイル時間 2,369 ms
コンパイル使用メモリ 73,916 KB
実行使用メモリ 54,592 KB
最終ジャッジ日時 2024-07-19 04:19:59
合計ジャッジ時間 9,642 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 123 ms
54,000 KB
testcase_01 AC 107 ms
52,792 KB
testcase_02 AC 125 ms
54,076 KB
testcase_03 AC 116 ms
54,116 KB
testcase_04 AC 130 ms
54,004 KB
testcase_05 AC 120 ms
53,988 KB
testcase_06 AC 129 ms
54,216 KB
testcase_07 AC 169 ms
54,436 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 138 ms
54,044 KB
testcase_11 RE -
testcase_12 AC 122 ms
54,336 KB
testcase_13 AC 109 ms
52,784 KB
testcase_14 AC 105 ms
52,696 KB
testcase_15 AC 174 ms
54,224 KB
testcase_16 AC 173 ms
54,016 KB
testcase_17 AC 168 ms
54,200 KB
testcase_18 AC 144 ms
54,100 KB
testcase_19 WA -
testcase_20 AC 174 ms
54,476 KB
testcase_21 AC 176 ms
54,308 KB
testcase_22 AC 175 ms
54,168 KB
testcase_23 WA -
testcase_24 AC 152 ms
54,068 KB
testcase_25 AC 177 ms
54,088 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 172 ms
54,156 KB
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 AC 138 ms
54,012 KB
testcase_38 AC 156 ms
53,780 KB
testcase_39 WA -
testcase_40 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.Scanner;
public class Main {

    public static void main(String[] args) {
	    Scanner sc = new Scanner(System.in);

            int a = sc.nextInt();
            double []b = new double[a];
            for (int i=0;i<a;i++){
                b[i]=sc.nextInt();
            }
            Arrays.sort(b);
            if (a%2==1){
                System.out.println(b[a%2]);
            }else {
                System.out.println((b[a/2]+b[a/2-1])/2);
        }
    }
}
0