結果

問題 No.275 中央値を求めよ
ユーザー Tsukasa_TypeTsukasa_Type
提出日時 2018-02-08 22:38:49
言語 Java21
(openjdk 21)
結果
AC  
実行時間 186 ms / 1,000 ms
コード長 471 bytes
コンパイル時間 2,107 ms
コンパイル使用メモリ 74,788 KB
実行使用メモリ 43,008 KB
最終ジャッジ日時 2024-06-25 00:50:29
合計ジャッジ時間 9,478 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 124 ms
41,372 KB
testcase_01 AC 123 ms
41,536 KB
testcase_02 AC 134 ms
41,764 KB
testcase_03 AC 127 ms
41,684 KB
testcase_04 AC 126 ms
41,368 KB
testcase_05 AC 114 ms
41,516 KB
testcase_06 AC 138 ms
41,496 KB
testcase_07 AC 174 ms
42,468 KB
testcase_08 AC 139 ms
41,756 KB
testcase_09 AC 139 ms
41,972 KB
testcase_10 AC 147 ms
41,696 KB
testcase_11 AC 125 ms
41,284 KB
testcase_12 AC 128 ms
41,632 KB
testcase_13 AC 126 ms
41,628 KB
testcase_14 AC 125 ms
41,348 KB
testcase_15 AC 183 ms
42,912 KB
testcase_16 AC 179 ms
42,464 KB
testcase_17 AC 181 ms
43,008 KB
testcase_18 AC 162 ms
41,632 KB
testcase_19 AC 174 ms
42,508 KB
testcase_20 AC 179 ms
42,416 KB
testcase_21 AC 164 ms
42,068 KB
testcase_22 AC 181 ms
42,480 KB
testcase_23 AC 168 ms
42,228 KB
testcase_24 AC 155 ms
41,824 KB
testcase_25 AC 177 ms
42,708 KB
testcase_26 AC 174 ms
42,272 KB
testcase_27 AC 164 ms
42,172 KB
testcase_28 AC 137 ms
41,544 KB
testcase_29 AC 170 ms
42,144 KB
testcase_30 AC 133 ms
41,548 KB
testcase_31 AC 177 ms
42,384 KB
testcase_32 AC 145 ms
41,708 KB
testcase_33 AC 174 ms
42,672 KB
testcase_34 AC 138 ms
41,712 KB
testcase_35 AC 174 ms
42,444 KB
testcase_36 AC 172 ms
42,028 KB
testcase_37 AC 143 ms
41,880 KB
testcase_38 AC 147 ms
41,800 KB
testcase_39 AC 150 ms
41,872 KB
testcase_40 AC 186 ms
42,592 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

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