結果

問題 No.275 中央値を求めよ
ユーザー TwinkleStar74TwinkleStar74
提出日時 2017-09-13 01:24:44
言語 Java21
(openjdk 21)
結果
AC  
実行時間 198 ms / 1,000 ms
コード長 677 bytes
コンパイル時間 2,108 ms
コンパイル使用メモリ 74,480 KB
実行使用メモリ 42,672 KB
最終ジャッジ日時 2024-06-25 00:39:25
合計ジャッジ時間 10,037 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
41,200 KB
testcase_01 AC 131 ms
41,328 KB
testcase_02 AC 151 ms
41,596 KB
testcase_03 AC 133 ms
41,300 KB
testcase_04 AC 134 ms
41,244 KB
testcase_05 AC 134 ms
41,424 KB
testcase_06 AC 145 ms
41,720 KB
testcase_07 AC 190 ms
42,184 KB
testcase_08 AC 149 ms
41,404 KB
testcase_09 AC 149 ms
41,476 KB
testcase_10 AC 148 ms
41,584 KB
testcase_11 AC 135 ms
41,300 KB
testcase_12 AC 132 ms
41,320 KB
testcase_13 AC 133 ms
41,328 KB
testcase_14 AC 134 ms
41,212 KB
testcase_15 AC 192 ms
42,532 KB
testcase_16 AC 198 ms
42,672 KB
testcase_17 AC 190 ms
42,592 KB
testcase_18 AC 172 ms
41,980 KB
testcase_19 AC 177 ms
41,944 KB
testcase_20 AC 180 ms
42,184 KB
testcase_21 AC 184 ms
41,836 KB
testcase_22 AC 192 ms
42,656 KB
testcase_23 AC 182 ms
41,980 KB
testcase_24 AC 155 ms
41,644 KB
testcase_25 AC 195 ms
42,416 KB
testcase_26 AC 196 ms
42,448 KB
testcase_27 AC 186 ms
42,328 KB
testcase_28 AC 145 ms
41,288 KB
testcase_29 AC 182 ms
41,864 KB
testcase_30 AC 142 ms
41,272 KB
testcase_31 AC 188 ms
42,368 KB
testcase_32 AC 151 ms
41,704 KB
testcase_33 AC 181 ms
42,316 KB
testcase_34 AC 147 ms
41,588 KB
testcase_35 AC 186 ms
42,304 KB
testcase_36 AC 168 ms
42,084 KB
testcase_37 AC 151 ms
41,412 KB
testcase_38 AC 165 ms
41,504 KB
testcase_39 AC 168 ms
41,824 KB
testcase_40 AC 194 ms
42,428 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.Scanner;
class No275 {

	public static void main(String[] args) {
		
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
        double x[] = new double[n];  //n個の整数を入れるdouble型の配列xを作成
        
		for(int i=0; i<n; i++){  //入力した数字を一つずつxに入れていく
			x[i]=sc.nextInt();
		}
		Arrays.sort(x);  //数字を昇順にソートする
		
		/*nが奇数なら真ん中の数字、偶数なら真ん中に近い二つの数値の和/2を取る*/
		if(n%2!=0){
			System.out.print(x[n/2]);
		}
		else {
			System.out.print( (x[(n/2)-1] + x[n/2])/2);
		}
		
		sc.close();
	}

}
0