結果

問題 No.275 中央値を求めよ
ユーザー ぴろずぴろず
提出日時 2015-09-04 22:43:53
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 415 bytes
コンパイル時間 1,905 ms
コンパイル使用メモリ 74,256 KB
実行使用メモリ 56,104 KB
最終ジャッジ日時 2024-07-19 01:25:45
合計ジャッジ時間 9,108 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 121 ms
41,428 KB
testcase_01 AC 108 ms
41,532 KB
testcase_02 AC 137 ms
41,820 KB
testcase_03 WA -
testcase_04 AC 116 ms
41,340 KB
testcase_05 AC 108 ms
41,604 KB
testcase_06 AC 129 ms
41,720 KB
testcase_07 AC 162 ms
42,080 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 135 ms
41,700 KB
testcase_11 RE -
testcase_12 AC 122 ms
41,520 KB
testcase_13 WA -
testcase_14 AC 118 ms
40,124 KB
testcase_15 AC 178 ms
42,720 KB
testcase_16 AC 175 ms
42,580 KB
testcase_17 AC 170 ms
42,596 KB
testcase_18 AC 156 ms
42,112 KB
testcase_19 WA -
testcase_20 AC 167 ms
42,332 KB
testcase_21 AC 166 ms
42,196 KB
testcase_22 AC 174 ms
42,456 KB
testcase_23 WA -
testcase_24 AC 156 ms
41,556 KB
testcase_25 AC 171 ms
42,672 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 163 ms
41,852 KB
testcase_30 AC 140 ms
41,696 KB
testcase_31 AC 171 ms
42,636 KB
testcase_32 AC 137 ms
41,656 KB
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 AC 135 ms
42,260 KB
testcase_38 AC 153 ms
41,936 KB
testcase_39 WA -
testcase_40 AC 174 ms
42,660 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+1]);
		}else{
			System.out.println((a[n/2] + a[n/2-1]) / 2);
		}
	}

}
0