結果

問題 No.275 中央値を求めよ
ユーザー AoiroFukurouAoiroFukurou
提出日時 2015-09-18 20:15:23
言語 Java21
(openjdk 21)
結果
AC  
実行時間 205 ms / 1,000 ms
コード長 516 bytes
コンパイル時間 3,851 ms
コンパイル使用メモリ 74,960 KB
実行使用メモリ 42,772 KB
最終ジャッジ日時 2024-06-24 23:19:17
合計ジャッジ時間 11,793 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
41,268 KB
testcase_01 AC 134 ms
41,408 KB
testcase_02 AC 144 ms
41,856 KB
testcase_03 AC 117 ms
40,304 KB
testcase_04 AC 131 ms
41,216 KB
testcase_05 AC 131 ms
41,328 KB
testcase_06 AC 141 ms
41,608 KB
testcase_07 AC 172 ms
42,016 KB
testcase_08 AC 146 ms
41,652 KB
testcase_09 AC 143 ms
41,568 KB
testcase_10 AC 145 ms
41,580 KB
testcase_11 AC 152 ms
41,584 KB
testcase_12 AC 152 ms
41,304 KB
testcase_13 AC 153 ms
41,452 KB
testcase_14 AC 150 ms
41,428 KB
testcase_15 AC 205 ms
42,368 KB
testcase_16 AC 182 ms
42,512 KB
testcase_17 AC 172 ms
42,524 KB
testcase_18 AC 165 ms
41,864 KB
testcase_19 AC 173 ms
42,148 KB
testcase_20 AC 186 ms
42,376 KB
testcase_21 AC 180 ms
42,060 KB
testcase_22 AC 178 ms
42,488 KB
testcase_23 AC 177 ms
41,876 KB
testcase_24 AC 155 ms
41,816 KB
testcase_25 AC 188 ms
42,772 KB
testcase_26 AC 181 ms
42,404 KB
testcase_27 AC 181 ms
42,136 KB
testcase_28 AC 142 ms
41,856 KB
testcase_29 AC 170 ms
41,956 KB
testcase_30 AC 138 ms
41,504 KB
testcase_31 AC 181 ms
42,452 KB
testcase_32 AC 145 ms
41,392 KB
testcase_33 AC 175 ms
42,444 KB
testcase_34 AC 141 ms
41,308 KB
testcase_35 AC 183 ms
42,240 KB
testcase_36 AC 176 ms
41,752 KB
testcase_37 AC 148 ms
41,572 KB
testcase_38 AC 148 ms
41,704 KB
testcase_39 AC 153 ms
41,368 KB
testcase_40 AC 183 ms
42,328 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yuki_coder;

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

public class No_275 {
public static void main(String[] args) {
	Scanner sc = new Scanner(System.in);
	int n = sc.nextInt();
	int[] a = new int[n];
	for(int i=0; i<a.length; i++){
		a[i] = sc.nextInt();
	}
	Arrays.sort(a);
	if(n%2==1){
		int b = (n+1)/2;
		System.out.println(a[b-1]);
	}else{
		double b = ((n+1.0)/2.0);
		int c = (int)((b - 0.5)-1);
		int d = (int)((b + 0.5)-1);
		double e = (a[c] + a[d])/2.0;
		System.out.println(e);
}
	}
}
0