結果

問題 No.275 中央値を求めよ
ユーザー ryosuke0825ryosuke0825
提出日時 2018-04-08 12:05:51
言語 Java21
(openjdk 21)
結果
AC  
実行時間 275 ms / 1,000 ms
コード長 543 bytes
コンパイル時間 3,668 ms
コンパイル使用メモリ 77,500 KB
実行使用メモリ 59,756 KB
最終ジャッジ日時 2024-06-25 01:12:20
合計ジャッジ時間 13,872 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 144 ms
54,264 KB
testcase_01 AC 146 ms
54,120 KB
testcase_02 AC 187 ms
54,508 KB
testcase_03 AC 149 ms
54,312 KB
testcase_04 AC 148 ms
54,244 KB
testcase_05 AC 148 ms
54,204 KB
testcase_06 AC 174 ms
54,324 KB
testcase_07 AC 248 ms
58,408 KB
testcase_08 AC 204 ms
54,652 KB
testcase_09 AC 210 ms
54,616 KB
testcase_10 AC 211 ms
54,280 KB
testcase_11 AC 147 ms
53,972 KB
testcase_12 AC 147 ms
54,300 KB
testcase_13 AC 147 ms
54,228 KB
testcase_14 AC 147 ms
54,344 KB
testcase_15 AC 271 ms
59,560 KB
testcase_16 AC 273 ms
59,068 KB
testcase_17 AC 270 ms
59,612 KB
testcase_18 AC 224 ms
57,084 KB
testcase_19 AC 249 ms
57,464 KB
testcase_20 AC 254 ms
58,360 KB
testcase_21 AC 235 ms
58,040 KB
testcase_22 AC 263 ms
58,820 KB
testcase_23 AC 239 ms
57,936 KB
testcase_24 AC 221 ms
57,240 KB
testcase_25 AC 269 ms
59,520 KB
testcase_26 AC 263 ms
58,940 KB
testcase_27 AC 254 ms
58,536 KB
testcase_28 AC 184 ms
54,676 KB
testcase_29 AC 225 ms
58,044 KB
testcase_30 AC 181 ms
54,476 KB
testcase_31 AC 261 ms
58,804 KB
testcase_32 AC 205 ms
54,724 KB
testcase_33 AC 264 ms
59,072 KB
testcase_34 AC 182 ms
54,592 KB
testcase_35 AC 249 ms
58,336 KB
testcase_36 AC 237 ms
57,764 KB
testcase_37 AC 201 ms
54,584 KB
testcase_38 AC 218 ms
54,972 KB
testcase_39 AC 225 ms
56,732 KB
testcase_40 AC 275 ms
59,756 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.ArrayList;
import java.util.Collections;
import java.util.Scanner;

public class No275 {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int N = sc.nextInt();
		ArrayList<Double> A = new ArrayList<Double>();

		for (double i = 1; i <= N; i++) {
			A.add(sc.nextDouble());
		}

		Collections.sort(A);

		if (A.size() % 2 == 0) {
			double d = ((A.get(A.size() / 2)) + (A.get((A.size() - 1) / 2))) / 2;
			System.out.println(d);
		} else {
			System.out.println(A.get(A.size() / 2));
		}
	}
}
0