結果

問題 No.275 中央値を求めよ
ユーザー ribenngeribennge
提出日時 2018-08-22 12:21:23
言語 Java21
(openjdk 21)
結果
AC  
実行時間 209 ms / 1,000 ms
コード長 470 bytes
コンパイル時間 2,052 ms
コンパイル使用メモリ 74,184 KB
実行使用メモリ 43,136 KB
最終ジャッジ日時 2024-06-25 01:55:26
合計ジャッジ時間 10,295 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 138 ms
41,228 KB
testcase_01 AC 135 ms
41,432 KB
testcase_02 AC 151 ms
41,336 KB
testcase_03 AC 134 ms
41,380 KB
testcase_04 AC 132 ms
41,344 KB
testcase_05 AC 135 ms
41,388 KB
testcase_06 AC 144 ms
41,676 KB
testcase_07 AC 184 ms
42,120 KB
testcase_08 AC 165 ms
41,608 KB
testcase_09 AC 166 ms
41,924 KB
testcase_10 AC 165 ms
41,808 KB
testcase_11 AC 148 ms
41,232 KB
testcase_12 AC 146 ms
41,404 KB
testcase_13 AC 146 ms
41,380 KB
testcase_14 AC 147 ms
41,192 KB
testcase_15 AC 208 ms
43,136 KB
testcase_16 AC 207 ms
42,672 KB
testcase_17 AC 209 ms
42,368 KB
testcase_18 AC 185 ms
42,052 KB
testcase_19 AC 201 ms
42,324 KB
testcase_20 AC 203 ms
42,396 KB
testcase_21 AC 198 ms
41,868 KB
testcase_22 AC 204 ms
42,144 KB
testcase_23 AC 200 ms
41,932 KB
testcase_24 AC 171 ms
41,852 KB
testcase_25 AC 191 ms
42,452 KB
testcase_26 AC 192 ms
42,348 KB
testcase_27 AC 191 ms
42,416 KB
testcase_28 AC 147 ms
41,452 KB
testcase_29 AC 183 ms
41,932 KB
testcase_30 AC 147 ms
41,776 KB
testcase_31 AC 193 ms
42,556 KB
testcase_32 AC 155 ms
41,644 KB
testcase_33 AC 179 ms
42,860 KB
testcase_34 AC 150 ms
41,496 KB
testcase_35 AC 179 ms
42,148 KB
testcase_36 AC 185 ms
41,864 KB
testcase_37 AC 152 ms
41,792 KB
testcase_38 AC 160 ms
42,096 KB
testcase_39 AC 160 ms
42,148 KB
testcase_40 AC 191 ms
42,288 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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