結果

問題 No.275 中央値を求めよ
ユーザー KinoshitaKinoshita
提出日時 2015-09-06 13:27:46
言語 Java21
(openjdk 21)
結果
AC  
実行時間 189 ms / 1,000 ms
コード長 476 bytes
コンパイル時間 2,212 ms
コンパイル使用メモリ 74,832 KB
実行使用メモリ 42,936 KB
最終ジャッジ日時 2024-06-24 23:12:44
合計ジャッジ時間 9,972 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
41,360 KB
testcase_01 AC 129 ms
41,512 KB
testcase_02 AC 143 ms
41,512 KB
testcase_03 AC 133 ms
41,644 KB
testcase_04 AC 134 ms
41,256 KB
testcase_05 AC 133 ms
41,488 KB
testcase_06 AC 142 ms
41,600 KB
testcase_07 AC 181 ms
42,204 KB
testcase_08 AC 146 ms
41,536 KB
testcase_09 AC 146 ms
41,688 KB
testcase_10 AC 155 ms
41,628 KB
testcase_11 AC 135 ms
41,388 KB
testcase_12 AC 132 ms
41,524 KB
testcase_13 AC 134 ms
41,460 KB
testcase_14 AC 133 ms
41,440 KB
testcase_15 AC 188 ms
42,936 KB
testcase_16 AC 187 ms
42,484 KB
testcase_17 AC 189 ms
42,668 KB
testcase_18 AC 163 ms
41,892 KB
testcase_19 AC 182 ms
42,224 KB
testcase_20 AC 181 ms
42,400 KB
testcase_21 AC 181 ms
42,276 KB
testcase_22 AC 181 ms
42,592 KB
testcase_23 AC 169 ms
42,008 KB
testcase_24 AC 156 ms
41,668 KB
testcase_25 AC 178 ms
42,416 KB
testcase_26 AC 186 ms
42,284 KB
testcase_27 AC 178 ms
42,312 KB
testcase_28 AC 141 ms
41,760 KB
testcase_29 AC 171 ms
41,912 KB
testcase_30 AC 138 ms
41,424 KB
testcase_31 AC 184 ms
42,252 KB
testcase_32 AC 139 ms
41,588 KB
testcase_33 AC 183 ms
42,348 KB
testcase_34 AC 142 ms
41,484 KB
testcase_35 AC 179 ms
42,528 KB
testcase_36 AC 176 ms
41,872 KB
testcase_37 AC 146 ms
41,704 KB
testcase_38 AC 165 ms
41,592 KB
testcase_39 AC 157 ms
41,780 KB
testcase_40 AC 182 ms
42,720 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main{
	
	static Main byakko = new Main();
	static Scanner sc = new Scanner(System.in);
	
	public static void main(String[] args){
		
		int n = sc.nextInt();
		double[] x = new double[n];
		
		for(int i = 0; i < n; i++){
			x[i] = sc.nextInt();
		}
		Arrays.sort(x);
		
		if(n % 2 == 0){
			System.out.println((x[n / 2] + x[n / 2 - 1]) / 2);
		}
		else{
			System.out.println(x[n / 2]);
		}
		
		sc.close();
	}
}
0