結果

問題 No.275 中央値を求めよ
ユーザー spaciaspacia
提出日時 2015-12-20 10:50:09
言語 Java21
(openjdk 21)
結果
AC  
実行時間 56 ms / 1,000 ms
コード長 585 bytes
コンパイル時間 2,187 ms
コンパイル使用メモリ 76,096 KB
実行使用メモリ 50,640 KB
最終ジャッジ日時 2024-06-24 23:35:19
合計ジャッジ時間 5,442 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
50,412 KB
testcase_01 AC 52 ms
50,400 KB
testcase_02 AC 53 ms
50,488 KB
testcase_03 AC 52 ms
50,448 KB
testcase_04 AC 53 ms
50,420 KB
testcase_05 AC 51 ms
50,384 KB
testcase_06 AC 55 ms
50,392 KB
testcase_07 AC 55 ms
50,488 KB
testcase_08 AC 52 ms
50,420 KB
testcase_09 AC 51 ms
50,424 KB
testcase_10 AC 52 ms
50,564 KB
testcase_11 AC 52 ms
50,380 KB
testcase_12 AC 52 ms
50,436 KB
testcase_13 AC 51 ms
50,116 KB
testcase_14 AC 52 ms
50,300 KB
testcase_15 AC 56 ms
50,556 KB
testcase_16 AC 56 ms
50,480 KB
testcase_17 AC 55 ms
50,100 KB
testcase_18 AC 53 ms
50,180 KB
testcase_19 AC 55 ms
50,456 KB
testcase_20 AC 56 ms
50,256 KB
testcase_21 AC 53 ms
50,416 KB
testcase_22 AC 55 ms
50,540 KB
testcase_23 AC 53 ms
50,136 KB
testcase_24 AC 51 ms
50,140 KB
testcase_25 AC 55 ms
50,352 KB
testcase_26 AC 55 ms
50,348 KB
testcase_27 AC 55 ms
50,236 KB
testcase_28 AC 53 ms
50,024 KB
testcase_29 AC 52 ms
50,048 KB
testcase_30 AC 52 ms
50,304 KB
testcase_31 AC 55 ms
50,524 KB
testcase_32 AC 52 ms
50,532 KB
testcase_33 AC 54 ms
50,640 KB
testcase_34 AC 52 ms
50,400 KB
testcase_35 AC 54 ms
50,544 KB
testcase_36 AC 53 ms
50,536 KB
testcase_37 AC 52 ms
50,192 KB
testcase_38 AC 53 ms
50,504 KB
testcase_39 AC 53 ms
50,540 KB
testcase_40 AC 54 ms
50,472 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;

class Main275 {
	
	public static void out (Object out) {
		System.out.println(out);
	}
	
	public static void main (String[] args) throws IOException {
		BufferedReader br = 
			new BufferedReader(new InputStreamReader(System.in));
		
		int n = Integer.parseInt(br.readLine());
		int[] nums = new int[n];
		String[] str = br.readLine().split(" ");
		
		for (int i = 0; i < n; i++)
			nums[i] = Integer.parseInt(str[i]);
		
		Arrays.sort(nums);
		
		if (n % 2 == 0)
			out((nums[n / 2] + nums[n / 2 - 1]) / 2.0);
		else
			out(nums[n / 2]);
		
	}
}
0