結果

問題 No.275 中央値を求めよ
ユーザー len_discoreglen_discoreg
提出日時 2016-06-03 10:04:54
言語 Java21
(openjdk 21)
結果
AC  
実行時間 275 ms / 1,000 ms
コード長 477 bytes
コンパイル時間 3,659 ms
コンパイル使用メモリ 75,196 KB
実行使用メモリ 59,844 KB
最終ジャッジ日時 2024-06-24 23:52:01
合計ジャッジ時間 14,121 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
54,304 KB
testcase_01 AC 135 ms
54,512 KB
testcase_02 AC 177 ms
54,620 KB
testcase_03 AC 128 ms
54,052 KB
testcase_04 AC 140 ms
54,376 KB
testcase_05 AC 143 ms
54,500 KB
testcase_06 AC 172 ms
54,560 KB
testcase_07 AC 235 ms
58,380 KB
testcase_08 AC 187 ms
54,880 KB
testcase_09 AC 207 ms
55,008 KB
testcase_10 AC 199 ms
54,588 KB
testcase_11 AC 140 ms
54,400 KB
testcase_12 AC 136 ms
54,396 KB
testcase_13 AC 138 ms
54,212 KB
testcase_14 AC 143 ms
54,148 KB
testcase_15 AC 260 ms
59,844 KB
testcase_16 AC 275 ms
59,832 KB
testcase_17 AC 267 ms
59,292 KB
testcase_18 AC 223 ms
57,884 KB
testcase_19 AC 235 ms
58,112 KB
testcase_20 AC 239 ms
58,420 KB
testcase_21 AC 223 ms
58,164 KB
testcase_22 AC 249 ms
59,448 KB
testcase_23 AC 222 ms
57,956 KB
testcase_24 AC 211 ms
57,452 KB
testcase_25 AC 255 ms
59,520 KB
testcase_26 AC 250 ms
59,332 KB
testcase_27 AC 241 ms
58,800 KB
testcase_28 AC 163 ms
54,252 KB
testcase_29 AC 220 ms
58,464 KB
testcase_30 AC 169 ms
54,232 KB
testcase_31 AC 246 ms
59,076 KB
testcase_32 AC 206 ms
54,356 KB
testcase_33 AC 241 ms
59,116 KB
testcase_34 AC 171 ms
54,556 KB
testcase_35 AC 236 ms
58,736 KB
testcase_36 AC 229 ms
59,036 KB
testcase_37 AC 198 ms
55,192 KB
testcase_38 AC 206 ms
54,784 KB
testcase_39 AC 202 ms
56,940 KB
testcase_40 AC 263 ms
59,372 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Yuki275 {
	public static void main(String[] args){
		Scanner scan = new Scanner(System.in);
		int N = scan.nextInt();
		double[] arr = new double[N];

		for(int i = 0; i < N; i++){
			arr[i] = scan.nextDouble();
		}

		Arrays.sort(arr);

		double median = 0.0;
		if(N % 2 == 0){
			median = (arr[(N/2) - 1] + arr[N/2]) / 2;
		}else{
			median = Math.ceil(arr[N/2]);
		}
		System.out.printf("%.1f", median);
	}
}
0