結果

問題 No.275 中央値を求めよ
ユーザー kenji_shioyakenji_shioya
提出日時 2016-05-24 04:54:24
言語 Java21
(openjdk 21)
結果
AC  
実行時間 193 ms / 1,000 ms
コード長 594 bytes
コンパイル時間 3,269 ms
コンパイル使用メモリ 75,960 KB
実行使用メモリ 42,672 KB
最終ジャッジ日時 2024-06-24 23:50:51
合計ジャッジ時間 11,001 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
41,528 KB
testcase_01 AC 116 ms
40,276 KB
testcase_02 AC 139 ms
41,444 KB
testcase_03 AC 129 ms
41,544 KB
testcase_04 AC 126 ms
41,236 KB
testcase_05 AC 129 ms
41,572 KB
testcase_06 AC 141 ms
41,492 KB
testcase_07 AC 176 ms
42,208 KB
testcase_08 AC 145 ms
41,504 KB
testcase_09 AC 146 ms
42,000 KB
testcase_10 AC 148 ms
41,512 KB
testcase_11 AC 128 ms
41,404 KB
testcase_12 AC 136 ms
41,508 KB
testcase_13 AC 131 ms
41,268 KB
testcase_14 AC 115 ms
40,324 KB
testcase_15 AC 185 ms
42,468 KB
testcase_16 AC 187 ms
42,664 KB
testcase_17 AC 193 ms
42,572 KB
testcase_18 AC 167 ms
42,080 KB
testcase_19 AC 181 ms
42,116 KB
testcase_20 AC 186 ms
42,312 KB
testcase_21 AC 177 ms
41,656 KB
testcase_22 AC 192 ms
42,500 KB
testcase_23 AC 177 ms
41,804 KB
testcase_24 AC 163 ms
41,524 KB
testcase_25 AC 189 ms
42,672 KB
testcase_26 AC 185 ms
42,212 KB
testcase_27 AC 174 ms
42,420 KB
testcase_28 AC 142 ms
41,296 KB
testcase_29 AC 178 ms
41,896 KB
testcase_30 AC 142 ms
41,336 KB
testcase_31 AC 185 ms
42,384 KB
testcase_32 AC 146 ms
41,724 KB
testcase_33 AC 183 ms
42,576 KB
testcase_34 AC 138 ms
41,348 KB
testcase_35 AC 184 ms
42,272 KB
testcase_36 AC 168 ms
41,936 KB
testcase_37 AC 145 ms
41,404 KB
testcase_38 AC 152 ms
42,036 KB
testcase_39 AC 168 ms
41,732 KB
testcase_40 AC 193 ms
42,404 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
import java.util.Arrays;

public class Exercises8{
  public static void main (String[] args){

    Scanner sc = new Scanner(System.in);

    int numLength = sc.nextInt();

    int[] numArray = new int[numLength];

    for (int n = 0; n < numLength; n++){
      numArray[n] = sc.nextInt();
    }
    
    Arrays.sort(numArray);

    float middle;
    if (numLength % 2 == 0){
      middle = ((float)numArray[numLength / 2] + (float)numArray[numLength / 2 - 1]) / 2;
    }else{
      middle = (float)numArray[numLength / 2];
    }

    System.out.println(middle);
  }
}
0