結果

問題 No.275 中央値を求めよ
ユーザー ottfoekstottfoekst
提出日時 2015-11-15 00:16:14
言語 Java21
(openjdk 21)
結果
AC  
実行時間 183 ms / 1,000 ms
コード長 538 bytes
コンパイル時間 3,168 ms
コンパイル使用メモリ 75,300 KB
実行使用メモリ 43,180 KB
最終ジャッジ日時 2024-06-24 23:31:15
合計ジャッジ時間 10,641 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 124 ms
41,416 KB
testcase_01 AC 128 ms
41,500 KB
testcase_02 AC 138 ms
41,460 KB
testcase_03 AC 115 ms
41,576 KB
testcase_04 AC 126 ms
41,492 KB
testcase_05 AC 130 ms
41,220 KB
testcase_06 AC 141 ms
41,940 KB
testcase_07 AC 171 ms
42,004 KB
testcase_08 AC 140 ms
41,620 KB
testcase_09 AC 139 ms
42,096 KB
testcase_10 AC 140 ms
41,692 KB
testcase_11 AC 122 ms
41,304 KB
testcase_12 AC 131 ms
41,804 KB
testcase_13 AC 125 ms
41,780 KB
testcase_14 AC 125 ms
41,328 KB
testcase_15 AC 172 ms
42,648 KB
testcase_16 AC 181 ms
42,404 KB
testcase_17 AC 179 ms
42,696 KB
testcase_18 AC 155 ms
41,908 KB
testcase_19 AC 175 ms
42,784 KB
testcase_20 AC 173 ms
42,560 KB
testcase_21 AC 165 ms
42,132 KB
testcase_22 AC 180 ms
43,180 KB
testcase_23 AC 161 ms
42,140 KB
testcase_24 AC 152 ms
41,624 KB
testcase_25 AC 180 ms
42,512 KB
testcase_26 AC 177 ms
42,844 KB
testcase_27 AC 171 ms
42,548 KB
testcase_28 AC 138 ms
41,296 KB
testcase_29 AC 169 ms
42,160 KB
testcase_30 AC 140 ms
41,812 KB
testcase_31 AC 176 ms
42,512 KB
testcase_32 AC 137 ms
41,904 KB
testcase_33 AC 183 ms
42,872 KB
testcase_34 AC 135 ms
41,216 KB
testcase_35 AC 174 ms
42,672 KB
testcase_36 AC 174 ms
42,644 KB
testcase_37 AC 141 ms
41,904 KB
testcase_38 AC 158 ms
41,764 KB
testcase_39 AC 160 ms
41,644 KB
testcase_40 AC 182 ms
42,412 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class No275 {

	public static void main(String[] args) {
		Scanner scanner = new Scanner(System.in);
		int[] noList = new int[scanner.nextInt()];
		for(int index = 0; index < noList.length; index++) {
			noList[index] = scanner.nextInt();
		}
		Arrays.sort(noList);
		if(noList.length % 2 == 1) {
			System.out.println(noList[noList.length / 2]);
		}
		else {
			System.out.println((noList[(noList.length / 2) - 1] + noList[noList.length / 2]) / 2.0);
		}
		scanner.close();
	}
}
0