結果

問題 No.275 中央値を求めよ
ユーザー 🐧しゅんチャマ🌸🐧しゅんチャマ🌸
提出日時 2023-09-13 22:59:21
言語 Java21
(openjdk 21)
結果
AC  
実行時間 212 ms / 1,000 ms
コード長 675 bytes
コンパイル時間 2,132 ms
コンパイル使用メモリ 73,996 KB
実行使用メモリ 55,176 KB
最終ジャッジ日時 2024-07-01 07:11:07
合計ジャッジ時間 10,440 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
54,364 KB
testcase_01 AC 136 ms
53,572 KB
testcase_02 AC 150 ms
54,068 KB
testcase_03 AC 136 ms
53,628 KB
testcase_04 AC 137 ms
53,716 KB
testcase_05 AC 134 ms
53,980 KB
testcase_06 AC 145 ms
53,588 KB
testcase_07 AC 193 ms
55,176 KB
testcase_08 AC 148 ms
53,928 KB
testcase_09 AC 150 ms
53,600 KB
testcase_10 AC 153 ms
54,344 KB
testcase_11 AC 136 ms
53,768 KB
testcase_12 AC 135 ms
53,492 KB
testcase_13 AC 136 ms
54,028 KB
testcase_14 AC 134 ms
53,740 KB
testcase_15 AC 210 ms
54,320 KB
testcase_16 AC 202 ms
54,192 KB
testcase_17 AC 207 ms
54,616 KB
testcase_18 AC 163 ms
53,820 KB
testcase_19 AC 204 ms
54,720 KB
testcase_20 AC 194 ms
54,448 KB
testcase_21 AC 189 ms
54,060 KB
testcase_22 AC 206 ms
54,480 KB
testcase_23 AC 176 ms
54,248 KB
testcase_24 AC 173 ms
53,712 KB
testcase_25 AC 212 ms
54,444 KB
testcase_26 AC 205 ms
54,712 KB
testcase_27 AC 197 ms
54,312 KB
testcase_28 AC 146 ms
53,864 KB
testcase_29 AC 170 ms
54,416 KB
testcase_30 AC 145 ms
54,008 KB
testcase_31 AC 206 ms
54,568 KB
testcase_32 AC 149 ms
53,916 KB
testcase_33 AC 200 ms
54,012 KB
testcase_34 AC 145 ms
53,952 KB
testcase_35 AC 199 ms
54,544 KB
testcase_36 AC 178 ms
54,188 KB
testcase_37 AC 151 ms
54,116 KB
testcase_38 AC 161 ms
54,012 KB
testcase_39 AC 162 ms
53,824 KB
testcase_40 AC 209 ms
54,228 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

class Y275{
    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();
        }
        for(int i=0;i<n-1;i++){
            for(int j=i+1;j<n;j++){
                if(A[i]>A[j]){
                    int tmp=A[i];
                    A[i]=A[j];
                    A[j]=tmp;
                }
            }
        }
        double ans;
        if(n%2==0){
            ans=(A[n/2-1]+A[n/2])/2.0;
            System.out.print(ans);
        }else{
            System.out.println(A[n/2]);
        }
    }
}
0