結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
54,372 KB
testcase_01 AC 125 ms
54,112 KB
testcase_02 AC 140 ms
54,552 KB
testcase_03 AC 126 ms
54,192 KB
testcase_04 AC 112 ms
53,092 KB
testcase_05 AC 124 ms
54,148 KB
testcase_06 AC 135 ms
53,956 KB
testcase_07 AC 172 ms
54,580 KB
testcase_08 AC 138 ms
54,320 KB
testcase_09 AC 138 ms
53,744 KB
testcase_10 AC 137 ms
54,260 KB
testcase_11 AC 118 ms
53,252 KB
testcase_12 AC 125 ms
54,120 KB
testcase_13 AC 121 ms
53,940 KB
testcase_14 AC 111 ms
52,864 KB
testcase_15 AC 180 ms
54,736 KB
testcase_16 AC 177 ms
54,252 KB
testcase_17 AC 176 ms
54,432 KB
testcase_18 AC 148 ms
54,056 KB
testcase_19 AC 173 ms
54,744 KB
testcase_20 AC 173 ms
54,340 KB
testcase_21 AC 169 ms
54,312 KB
testcase_22 AC 180 ms
54,452 KB
testcase_23 AC 168 ms
54,428 KB
testcase_24 AC 158 ms
54,268 KB
testcase_25 AC 180 ms
54,536 KB
testcase_26 AC 179 ms
54,452 KB
testcase_27 AC 177 ms
54,260 KB
testcase_28 AC 134 ms
54,272 KB
testcase_29 AC 168 ms
54,308 KB
testcase_30 AC 137 ms
54,648 KB
testcase_31 AC 179 ms
54,640 KB
testcase_32 AC 133 ms
54,092 KB
testcase_33 AC 180 ms
54,496 KB
testcase_34 AC 133 ms
54,436 KB
testcase_35 AC 176 ms
54,476 KB
testcase_36 AC 169 ms
54,260 KB
testcase_37 AC 139 ms
54,152 KB
testcase_38 AC 156 ms
53,812 KB
testcase_39 AC 149 ms
53,820 KB
testcase_40 AC 176 ms
54,548 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