結果

問題 No.275 中央値を求めよ
ユーザー jimanojimano
提出日時 2016-01-11 11:55:34
言語 Java21
(openjdk 21)
結果
AC  
実行時間 61 ms / 1,000 ms
コード長 841 bytes
コンパイル時間 3,845 ms
コンパイル使用メモリ 75,320 KB
実行使用メモリ 37,452 KB
最終ジャッジ日時 2024-06-24 23:39:10
合計ジャッジ時間 6,433 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
37,324 KB
testcase_01 AC 53 ms
36,736 KB
testcase_02 AC 53 ms
37,320 KB
testcase_03 AC 52 ms
37,172 KB
testcase_04 AC 52 ms
36,892 KB
testcase_05 AC 50 ms
37,348 KB
testcase_06 AC 52 ms
37,264 KB
testcase_07 AC 54 ms
36,884 KB
testcase_08 AC 54 ms
37,060 KB
testcase_09 AC 52 ms
37,164 KB
testcase_10 AC 52 ms
37,204 KB
testcase_11 AC 52 ms
37,172 KB
testcase_12 AC 52 ms
36,900 KB
testcase_13 AC 53 ms
37,376 KB
testcase_14 AC 54 ms
37,320 KB
testcase_15 AC 57 ms
37,276 KB
testcase_16 AC 57 ms
37,216 KB
testcase_17 AC 56 ms
37,256 KB
testcase_18 AC 54 ms
37,368 KB
testcase_19 AC 54 ms
36,888 KB
testcase_20 AC 54 ms
36,884 KB
testcase_21 AC 54 ms
36,996 KB
testcase_22 AC 55 ms
37,084 KB
testcase_23 AC 56 ms
36,888 KB
testcase_24 AC 53 ms
37,320 KB
testcase_25 AC 56 ms
37,304 KB
testcase_26 AC 54 ms
36,848 KB
testcase_27 AC 53 ms
37,312 KB
testcase_28 AC 53 ms
37,172 KB
testcase_29 AC 55 ms
37,212 KB
testcase_30 AC 52 ms
37,164 KB
testcase_31 AC 61 ms
37,452 KB
testcase_32 AC 53 ms
37,348 KB
testcase_33 AC 54 ms
37,324 KB
testcase_34 AC 52 ms
36,900 KB
testcase_35 AC 54 ms
36,936 KB
testcase_36 AC 54 ms
37,352 KB
testcase_37 AC 53 ms
37,320 KB
testcase_38 AC 52 ms
36,892 KB
testcase_39 AC 53 ms
37,152 KB
testcase_40 AC 55 ms
37,296 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.Arrays;

public class No0275 {
	public static void main(String[] args) {
		try (BufferedReader br = 
				new BufferedReader(new InputStreamReader(System.in))) {
	        int N = Integer.parseInt(br.readLine());
	        String[] str = br.readLine().split(" ");
	        int[] A = new int[N];
	        int length = A.length;
	        int l = length / 2;
	        
	        for (int i = 0; i < N ; i++) {
	        	A[i] = Integer.parseInt(str[i]);
	        }
	        Arrays.sort(A);	        
	        
	        if(length % 2 == 0){
	        	System.out.println( (double)(A[l - 1] + A[l]) / 2);
	        } else {
	        	System.out.println(A[l]);
	        }
	        
		} catch (IOException e) {
			e.printStackTrace();
		}
    }
}
0