結果

問題 No.275 中央値を求めよ
ユーザー papipenpapipen
提出日時 2017-03-26 00:28:53
言語 Java21
(openjdk 21)
結果
AC  
実行時間 187 ms / 1,000 ms
コード長 383 bytes
コンパイル時間 2,318 ms
コンパイル使用メモリ 75,120 KB
実行使用メモリ 42,784 KB
最終ジャッジ日時 2024-06-25 00:25:57
合計ジャッジ時間 10,321 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
41,344 KB
testcase_01 AC 115 ms
40,080 KB
testcase_02 AC 143 ms
41,276 KB
testcase_03 AC 129 ms
41,524 KB
testcase_04 AC 128 ms
41,396 KB
testcase_05 AC 129 ms
41,352 KB
testcase_06 AC 139 ms
41,332 KB
testcase_07 AC 172 ms
42,032 KB
testcase_08 AC 134 ms
40,804 KB
testcase_09 AC 139 ms
41,496 KB
testcase_10 AC 144 ms
41,880 KB
testcase_11 AC 127 ms
41,412 KB
testcase_12 AC 129 ms
41,212 KB
testcase_13 AC 128 ms
41,176 KB
testcase_14 AC 122 ms
40,892 KB
testcase_15 AC 184 ms
42,552 KB
testcase_16 AC 187 ms
42,784 KB
testcase_17 AC 185 ms
42,440 KB
testcase_18 AC 168 ms
41,760 KB
testcase_19 AC 178 ms
42,120 KB
testcase_20 AC 181 ms
42,008 KB
testcase_21 AC 170 ms
41,780 KB
testcase_22 AC 185 ms
42,288 KB
testcase_23 AC 174 ms
42,056 KB
testcase_24 AC 165 ms
41,820 KB
testcase_25 AC 187 ms
42,304 KB
testcase_26 AC 186 ms
42,296 KB
testcase_27 AC 183 ms
42,120 KB
testcase_28 AC 140 ms
41,328 KB
testcase_29 AC 176 ms
41,968 KB
testcase_30 AC 133 ms
40,880 KB
testcase_31 AC 184 ms
42,164 KB
testcase_32 AC 147 ms
41,528 KB
testcase_33 AC 180 ms
42,112 KB
testcase_34 AC 139 ms
41,364 KB
testcase_35 AC 182 ms
42,024 KB
testcase_36 AC 157 ms
42,256 KB
testcase_37 AC 150 ms
41,560 KB
testcase_38 AC 162 ms
41,528 KB
testcase_39 AC 154 ms
41,740 KB
testcase_40 AC 184 ms
42,560 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

class Tyuo{
	public static void main(String args[]){
		Scanner s = new Scanner(System.in);
		int N = s.nextInt();
		int a[] = new int[N];
		for(int i = 0; i < N; i++){
			a[i] = s.nextInt();
		}
		Arrays.sort(a);
		if(N % 2 != 0){
			System.out.println(a[N/2]);
		}else{
			System.out.println((a[(N/2)-1] + a[N/2]) / 2.0);
		}
}
}
0