結果

問題 No.275 中央値を求めよ
ユーザー ぴろずぴろず
提出日時 2015-09-04 22:44:32
言語 Java21
(openjdk 21)
結果
AC  
実行時間 207 ms / 1,000 ms
コード長 413 bytes
コンパイル時間 2,364 ms
コンパイル使用メモリ 74,416 KB
実行使用メモリ 42,864 KB
最終ジャッジ日時 2024-06-24 23:09:55
合計ジャッジ時間 10,590 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 142 ms
41,388 KB
testcase_01 AC 141 ms
41,812 KB
testcase_02 AC 154 ms
41,612 KB
testcase_03 AC 145 ms
41,524 KB
testcase_04 AC 142 ms
41,488 KB
testcase_05 AC 146 ms
41,616 KB
testcase_06 AC 157 ms
41,576 KB
testcase_07 AC 190 ms
42,864 KB
testcase_08 AC 159 ms
41,924 KB
testcase_09 AC 161 ms
41,640 KB
testcase_10 AC 160 ms
42,004 KB
testcase_11 AC 140 ms
41,888 KB
testcase_12 AC 140 ms
41,608 KB
testcase_13 AC 148 ms
41,536 KB
testcase_14 AC 138 ms
41,536 KB
testcase_15 AC 207 ms
42,528 KB
testcase_16 AC 204 ms
42,396 KB
testcase_17 AC 207 ms
42,848 KB
testcase_18 AC 170 ms
42,256 KB
testcase_19 AC 198 ms
42,432 KB
testcase_20 AC 201 ms
42,332 KB
testcase_21 AC 191 ms
42,628 KB
testcase_22 AC 207 ms
42,696 KB
testcase_23 AC 194 ms
42,180 KB
testcase_24 AC 174 ms
41,876 KB
testcase_25 AC 197 ms
42,524 KB
testcase_26 AC 206 ms
42,696 KB
testcase_27 AC 196 ms
42,464 KB
testcase_28 AC 149 ms
42,056 KB
testcase_29 AC 188 ms
42,020 KB
testcase_30 AC 154 ms
41,688 KB
testcase_31 AC 193 ms
42,364 KB
testcase_32 AC 156 ms
41,924 KB
testcase_33 AC 191 ms
42,200 KB
testcase_34 AC 144 ms
41,664 KB
testcase_35 AC 176 ms
42,424 KB
testcase_36 AC 179 ms
42,608 KB
testcase_37 AC 151 ms
41,592 KB
testcase_38 AC 170 ms
42,052 KB
testcase_39 AC 159 ms
42,020 KB
testcase_40 AC 192 ms
42,772 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package no275;

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

public class Main {

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

}
0