結果

問題 No.275 中央値を求めよ
ユーザー yonaka_gggyonaka_ggg
提出日時 2020-09-06 15:43:28
言語 Java21
(openjdk 21)
結果
AC  
実行時間 181 ms / 1,000 ms
コード長 557 bytes
コンパイル時間 1,905 ms
コンパイル使用メモリ 74,440 KB
実行使用メモリ 54,724 KB
最終ジャッジ日時 2024-05-06 21:06:00
合計ジャッジ時間 9,198 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 119 ms
54,284 KB
testcase_01 AC 120 ms
54,392 KB
testcase_02 AC 132 ms
54,348 KB
testcase_03 AC 107 ms
53,048 KB
testcase_04 AC 122 ms
54,096 KB
testcase_05 AC 109 ms
52,796 KB
testcase_06 AC 129 ms
54,476 KB
testcase_07 AC 166 ms
54,336 KB
testcase_08 AC 136 ms
54,316 KB
testcase_09 AC 125 ms
53,704 KB
testcase_10 AC 136 ms
54,196 KB
testcase_11 AC 121 ms
54,060 KB
testcase_12 AC 121 ms
53,984 KB
testcase_13 AC 122 ms
54,188 KB
testcase_14 AC 122 ms
53,956 KB
testcase_15 AC 175 ms
54,420 KB
testcase_16 AC 181 ms
54,724 KB
testcase_17 AC 159 ms
54,372 KB
testcase_18 AC 152 ms
54,308 KB
testcase_19 AC 153 ms
54,472 KB
testcase_20 AC 166 ms
54,624 KB
testcase_21 AC 162 ms
54,620 KB
testcase_22 AC 173 ms
54,544 KB
testcase_23 AC 161 ms
54,112 KB
testcase_24 AC 142 ms
54,236 KB
testcase_25 AC 177 ms
54,520 KB
testcase_26 AC 157 ms
54,724 KB
testcase_27 AC 168 ms
54,616 KB
testcase_28 AC 127 ms
54,260 KB
testcase_29 AC 147 ms
54,224 KB
testcase_30 AC 123 ms
54,428 KB
testcase_31 AC 175 ms
54,356 KB
testcase_32 AC 129 ms
54,180 KB
testcase_33 AC 170 ms
54,440 KB
testcase_34 AC 132 ms
54,272 KB
testcase_35 AC 176 ms
54,512 KB
testcase_36 AC 167 ms
54,624 KB
testcase_37 AC 134 ms
54,220 KB
testcase_38 AC 139 ms
54,216 KB
testcase_39 AC 142 ms
53,960 KB
testcase_40 AC 176 ms
54,692 KB
権限があれば一括ダウンロードができます

ソースコード

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 n = sc.nextInt();
        int[] a = new int[n];
        for(int i = 0; i < n; i++)
        	a[i] = sc.nextInt();
        
        Arrays.sort(a);
        double ans = 0;
        if(n % 2 == 0) {
        	ans = Math.round(((a[n / 2 - 1] + a[n / 2]) * 10) / 2);
        	ans /= 10;
        }
        else ans = Math.round(a[n / 2]);
        
        System.out.println(ans);
    }

}
0