結果

問題 No.275 中央値を求めよ
ユーザー Ryota EnokidoRyota Enokido
提出日時 2018-12-10 12:07:12
言語 Java21
(openjdk 21)
結果
AC  
実行時間 201 ms / 1,000 ms
コード長 839 bytes
コンパイル時間 2,366 ms
コンパイル使用メモリ 73,960 KB
実行使用メモリ 43,028 KB
最終ジャッジ日時 2024-09-16 15:48:09
合計ジャッジ時間 9,822 ms
ジャッジサーバーID
(参考情報)
judge1 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
41,204 KB
testcase_01 AC 102 ms
39,916 KB
testcase_02 AC 131 ms
41,388 KB
testcase_03 AC 107 ms
39,728 KB
testcase_04 AC 122 ms
41,388 KB
testcase_05 AC 117 ms
41,116 KB
testcase_06 AC 127 ms
41,120 KB
testcase_07 AC 170 ms
41,764 KB
testcase_08 AC 130 ms
41,604 KB
testcase_09 AC 131 ms
41,592 KB
testcase_10 AC 133 ms
41,504 KB
testcase_11 AC 116 ms
41,368 KB
testcase_12 AC 116 ms
41,240 KB
testcase_13 AC 111 ms
39,952 KB
testcase_14 AC 117 ms
40,712 KB
testcase_15 AC 189 ms
42,764 KB
testcase_16 AC 189 ms
42,532 KB
testcase_17 AC 191 ms
42,412 KB
testcase_18 AC 161 ms
41,756 KB
testcase_19 AC 179 ms
42,352 KB
testcase_20 AC 181 ms
41,964 KB
testcase_21 AC 158 ms
41,840 KB
testcase_22 AC 185 ms
42,652 KB
testcase_23 AC 159 ms
42,120 KB
testcase_24 AC 147 ms
41,516 KB
testcase_25 AC 185 ms
42,388 KB
testcase_26 AC 180 ms
42,296 KB
testcase_27 AC 172 ms
41,744 KB
testcase_28 AC 128 ms
41,396 KB
testcase_29 AC 150 ms
41,760 KB
testcase_30 AC 128 ms
41,332 KB
testcase_31 AC 176 ms
42,348 KB
testcase_32 AC 132 ms
41,380 KB
testcase_33 AC 188 ms
42,332 KB
testcase_34 AC 131 ms
41,616 KB
testcase_35 AC 170 ms
43,028 KB
testcase_36 AC 149 ms
41,908 KB
testcase_37 AC 130 ms
41,392 KB
testcase_38 AC 141 ms
41,744 KB
testcase_39 AC 153 ms
41,772 KB
testcase_40 AC 201 ms
42,300 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
import java.lang.Math;

 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();
         }
         
         for(int j=0; j<A.length-1; j++){
             for(int k=N-1; k>j; k--){
                 if(A[k] < A[k-1]){
                     int temp = A[k];
                     A[k] = A[k-1];
                     A[k-1] = temp;
                 }
             }
         }
         

         if(N%2==0){
             double center = (double)(A[N/2] + A[(N/2)-1]) / 2;
             System.out.println(center);
         }else{
             int center = A[N/2];
             System.out.println(center);
         }
   
     }
 }
0