結果

問題 No.275 中央値を求めよ
ユーザー YukimotoPGYukimotoPG
提出日時 2019-02-14 08:41:02
言語 Java21
(openjdk 21)
結果
AC  
実行時間 193 ms / 1,000 ms
コード長 386 bytes
コンパイル時間 2,087 ms
コンパイル使用メモリ 75,072 KB
実行使用メモリ 43,032 KB
最終ジャッジ日時 2024-09-13 11:17:05
合計ジャッジ時間 10,273 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
41,408 KB
testcase_01 AC 129 ms
41,320 KB
testcase_02 AC 145 ms
41,560 KB
testcase_03 AC 132 ms
41,180 KB
testcase_04 AC 129 ms
41,136 KB
testcase_05 AC 129 ms
41,144 KB
testcase_06 AC 142 ms
41,540 KB
testcase_07 AC 185 ms
42,412 KB
testcase_08 AC 146 ms
41,636 KB
testcase_09 AC 149 ms
41,800 KB
testcase_10 AC 148 ms
41,972 KB
testcase_11 AC 130 ms
41,280 KB
testcase_12 AC 116 ms
40,164 KB
testcase_13 AC 130 ms
41,456 KB
testcase_14 AC 130 ms
41,584 KB
testcase_15 AC 184 ms
42,928 KB
testcase_16 AC 188 ms
42,564 KB
testcase_17 AC 188 ms
42,360 KB
testcase_18 AC 158 ms
41,804 KB
testcase_19 AC 172 ms
42,084 KB
testcase_20 AC 183 ms
42,704 KB
testcase_21 AC 175 ms
41,808 KB
testcase_22 AC 189 ms
42,356 KB
testcase_23 AC 179 ms
42,140 KB
testcase_24 AC 165 ms
41,916 KB
testcase_25 AC 189 ms
42,968 KB
testcase_26 AC 187 ms
42,080 KB
testcase_27 AC 184 ms
42,276 KB
testcase_28 AC 141 ms
41,684 KB
testcase_29 AC 174 ms
42,136 KB
testcase_30 AC 142 ms
41,440 KB
testcase_31 AC 190 ms
43,032 KB
testcase_32 AC 145 ms
41,696 KB
testcase_33 AC 186 ms
42,208 KB
testcase_34 AC 146 ms
41,576 KB
testcase_35 AC 186 ms
42,144 KB
testcase_36 AC 169 ms
41,704 KB
testcase_37 AC 151 ms
41,388 KB
testcase_38 AC 168 ms
41,616 KB
testcase_39 AC 168 ms
41,936 KB
testcase_40 AC 193 ms
42,460 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

class Main {
	static Scanner sc = new Scanner(System.in);
	public static void main(String[] args) {
		
		int n = sc.nextInt();
		int[] ar = new int[n];
		for (int i=0; i<n; i++) ar[i] = sc.nextInt();
		Arrays.sort(ar);
		if (n%2 == 0) {
			//012345
			System.out.println((double)(ar[(n-1)/2]+ar[n/2])/2);
		}
		else {
			System.out.println(ar[(n-1)/2]);
		}
		
	}
}
0