結果

問題 No.275 中央値を求めよ
ユーザー GBGB
提出日時 2018-04-08 16:08:11
言語 Java21
(openjdk 21)
結果
AC  
実行時間 178 ms / 1,000 ms
コード長 940 bytes
コンパイル時間 1,957 ms
コンパイル使用メモリ 77,968 KB
実行使用メモリ 43,036 KB
最終ジャッジ日時 2024-06-25 01:12:36
合計ジャッジ時間 9,091 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 120 ms
41,372 KB
testcase_01 AC 121 ms
41,364 KB
testcase_02 AC 129 ms
41,248 KB
testcase_03 AC 119 ms
41,280 KB
testcase_04 AC 119 ms
41,168 KB
testcase_05 AC 123 ms
41,600 KB
testcase_06 AC 129 ms
41,328 KB
testcase_07 AC 171 ms
41,788 KB
testcase_08 AC 126 ms
41,340 KB
testcase_09 AC 130 ms
41,500 KB
testcase_10 AC 133 ms
41,444 KB
testcase_11 AC 122 ms
41,200 KB
testcase_12 AC 125 ms
41,768 KB
testcase_13 AC 121 ms
41,264 KB
testcase_14 AC 124 ms
41,428 KB
testcase_15 AC 176 ms
41,724 KB
testcase_16 AC 174 ms
42,156 KB
testcase_17 AC 176 ms
41,712 KB
testcase_18 AC 144 ms
41,728 KB
testcase_19 AC 166 ms
42,032 KB
testcase_20 AC 177 ms
42,052 KB
testcase_21 AC 154 ms
41,592 KB
testcase_22 AC 174 ms
41,728 KB
testcase_23 AC 144 ms
41,620 KB
testcase_24 AC 136 ms
41,496 KB
testcase_25 AC 178 ms
42,140 KB
testcase_26 AC 169 ms
41,924 KB
testcase_27 AC 175 ms
42,144 KB
testcase_28 AC 127 ms
41,456 KB
testcase_29 AC 154 ms
41,472 KB
testcase_30 AC 125 ms
41,376 KB
testcase_31 AC 174 ms
41,844 KB
testcase_32 AC 129 ms
43,036 KB
testcase_33 AC 166 ms
41,808 KB
testcase_34 AC 126 ms
41,472 KB
testcase_35 AC 168 ms
41,680 KB
testcase_36 AC 144 ms
41,568 KB
testcase_37 AC 128 ms
41,476 KB
testcase_38 AC 137 ms
41,348 KB
testcase_39 AC 140 ms
41,608 KB
testcase_40 AC 177 ms
42,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;

class Main{
  public static void main(String[] args)throws IOException {

    //nの入力,配列arrayの入力
    Scanner scan=new Scanner(System.in);
    int n=Integer.parseInt(scan.next());
    int[] array=new int[n];
    for(int i=0;i<array.length;i++){
      array[i]=Integer.parseInt(scan.next());
    }
    float median=0;
    //ソート
    for(int i=0;i<array.length-1;i++){
      for(int j=array.length-1;j>i;j--){
        if(array[j]<array[j-1]){
          int tmp=array[j];
          array[j]=array[j-1];
          array[j-1]=tmp;
        }
      }
    }

    //nが偶数であればn/2と(n/2)-1の配列の値の平均を取る.nが奇数であればn-1/2番目の値を選ぶ
    if(n%2==0){
      median=(float)(array[n/2]+array[n/2-1])/2;
      System.out.println(String.format("%.1f",median));
    }else{
      median=array[(n-1)/2];
      System.out.println(median);
    }
  }
}
0