結果

問題 No.275 中央値を求めよ
ユーザー CavasiroCavasiro
提出日時 2020-04-15 01:43:25
言語 Java21
(openjdk 21)
結果
AC  
実行時間 198 ms / 1,000 ms
コード長 409 bytes
コンパイル時間 2,207 ms
コンパイル使用メモリ 74,952 KB
実行使用メモリ 42,416 KB
最終ジャッジ日時 2024-10-01 18:33:07
合計ジャッジ時間 10,407 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 136 ms
41,152 KB
testcase_01 AC 133 ms
41,264 KB
testcase_02 AC 150 ms
41,376 KB
testcase_03 AC 137 ms
41,428 KB
testcase_04 AC 138 ms
41,224 KB
testcase_05 AC 137 ms
41,292 KB
testcase_06 AC 147 ms
41,464 KB
testcase_07 AC 191 ms
42,004 KB
testcase_08 AC 153 ms
41,500 KB
testcase_09 AC 154 ms
41,576 KB
testcase_10 AC 155 ms
41,756 KB
testcase_11 AC 133 ms
41,520 KB
testcase_12 AC 132 ms
41,688 KB
testcase_13 AC 121 ms
40,320 KB
testcase_14 AC 134 ms
41,440 KB
testcase_15 AC 192 ms
42,272 KB
testcase_16 AC 188 ms
42,396 KB
testcase_17 AC 198 ms
42,364 KB
testcase_18 AC 167 ms
42,100 KB
testcase_19 AC 188 ms
42,168 KB
testcase_20 AC 194 ms
42,308 KB
testcase_21 AC 183 ms
41,952 KB
testcase_22 AC 198 ms
42,324 KB
testcase_23 AC 174 ms
42,080 KB
testcase_24 AC 175 ms
41,756 KB
testcase_25 AC 197 ms
42,416 KB
testcase_26 AC 187 ms
42,312 KB
testcase_27 AC 195 ms
42,256 KB
testcase_28 AC 148 ms
41,416 KB
testcase_29 AC 175 ms
41,936 KB
testcase_30 AC 150 ms
41,512 KB
testcase_31 AC 197 ms
42,324 KB
testcase_32 AC 153 ms
41,632 KB
testcase_33 AC 198 ms
42,384 KB
testcase_34 AC 147 ms
41,524 KB
testcase_35 AC 190 ms
42,176 KB
testcase_36 AC 166 ms
41,740 KB
testcase_37 AC 153 ms
41,636 KB
testcase_38 AC 161 ms
41,812 KB
testcase_39 AC 165 ms
41,808 KB
testcase_40 AC 197 ms
42,416 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.Scanner;
 
class Main {
	public static void main(String[] args){
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		int[] a = new int[n];
		for(int i=0;i<n;i++){
			a[i] = sc.nextInt();
		}
		double median;
		Arrays.sort(a);
		if(n%2==0){
			median = (a[n/2-1]+a[n/2])/2.0;
		} else {
			median = a[n/2];
		}
		System.out.printf("%.1f\n", median);
	}
}
0