結果

問題 No.275 中央値を求めよ
ユーザー len_proglen_prog
提出日時 2016-06-03 10:06:00
言語 Java21
(openjdk 21)
結果
AC  
実行時間 264 ms / 1,000 ms
コード長 477 bytes
コンパイル時間 3,407 ms
コンパイル使用メモリ 75,532 KB
実行使用メモリ 60,792 KB
最終ジャッジ日時 2024-06-24 23:53:03
合計ジャッジ時間 12,922 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 137 ms
54,276 KB
testcase_01 AC 139 ms
54,264 KB
testcase_02 AC 173 ms
54,684 KB
testcase_03 AC 125 ms
53,356 KB
testcase_04 AC 136 ms
54,228 KB
testcase_05 AC 126 ms
53,868 KB
testcase_06 AC 173 ms
54,540 KB
testcase_07 AC 230 ms
58,580 KB
testcase_08 AC 197 ms
55,360 KB
testcase_09 AC 187 ms
54,864 KB
testcase_10 AC 212 ms
56,148 KB
testcase_11 AC 142 ms
54,404 KB
testcase_12 AC 139 ms
54,248 KB
testcase_13 AC 142 ms
54,348 KB
testcase_14 AC 127 ms
53,864 KB
testcase_15 AC 264 ms
59,220 KB
testcase_16 AC 260 ms
59,364 KB
testcase_17 AC 257 ms
59,428 KB
testcase_18 AC 220 ms
57,528 KB
testcase_19 AC 245 ms
59,052 KB
testcase_20 AC 248 ms
58,296 KB
testcase_21 AC 227 ms
57,640 KB
testcase_22 AC 249 ms
59,080 KB
testcase_23 AC 233 ms
58,140 KB
testcase_24 AC 209 ms
56,760 KB
testcase_25 AC 260 ms
59,488 KB
testcase_26 AC 248 ms
58,932 KB
testcase_27 AC 238 ms
58,592 KB
testcase_28 AC 165 ms
54,460 KB
testcase_29 AC 235 ms
58,200 KB
testcase_30 AC 171 ms
54,424 KB
testcase_31 AC 258 ms
59,156 KB
testcase_32 AC 203 ms
56,088 KB
testcase_33 AC 250 ms
58,972 KB
testcase_34 AC 171 ms
54,252 KB
testcase_35 AC 237 ms
58,720 KB
testcase_36 AC 222 ms
57,944 KB
testcase_37 AC 202 ms
54,848 KB
testcase_38 AC 211 ms
54,916 KB
testcase_39 AC 215 ms
57,856 KB
testcase_40 AC 257 ms
60,792 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