結果

問題 No.275 中央値を求めよ
ユーザー TakaTaka
提出日時 2016-11-04 16:35:47
言語 Java21
(openjdk 21)
結果
AC  
実行時間 265 ms / 1,000 ms
コード長 386 bytes
コンパイル時間 2,134 ms
コンパイル使用メモリ 74,728 KB
実行使用メモリ 60,156 KB
最終ジャッジ日時 2024-06-25 00:08:04
合計ジャッジ時間 11,744 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 140 ms
54,248 KB
testcase_01 AC 130 ms
53,900 KB
testcase_02 AC 174 ms
54,464 KB
testcase_03 AC 145 ms
54,416 KB
testcase_04 AC 141 ms
54,236 KB
testcase_05 AC 139 ms
54,088 KB
testcase_06 AC 167 ms
54,720 KB
testcase_07 AC 240 ms
57,980 KB
testcase_08 AC 181 ms
54,700 KB
testcase_09 AC 201 ms
54,900 KB
testcase_10 AC 209 ms
54,532 KB
testcase_11 AC 139 ms
54,460 KB
testcase_12 AC 138 ms
54,416 KB
testcase_13 AC 139 ms
54,276 KB
testcase_14 AC 137 ms
54,504 KB
testcase_15 AC 265 ms
59,864 KB
testcase_16 AC 253 ms
59,260 KB
testcase_17 AC 257 ms
60,156 KB
testcase_18 AC 215 ms
56,864 KB
testcase_19 AC 232 ms
58,544 KB
testcase_20 AC 243 ms
58,488 KB
testcase_21 AC 227 ms
58,156 KB
testcase_22 AC 246 ms
58,904 KB
testcase_23 AC 219 ms
58,148 KB
testcase_24 AC 208 ms
56,896 KB
testcase_25 AC 256 ms
59,152 KB
testcase_26 AC 249 ms
59,048 KB
testcase_27 AC 241 ms
58,508 KB
testcase_28 AC 173 ms
54,780 KB
testcase_29 AC 224 ms
56,912 KB
testcase_30 AC 173 ms
54,572 KB
testcase_31 AC 261 ms
59,512 KB
testcase_32 AC 202 ms
54,608 KB
testcase_33 AC 256 ms
59,196 KB
testcase_34 AC 173 ms
54,636 KB
testcase_35 AC 237 ms
58,440 KB
testcase_36 AC 226 ms
58,304 KB
testcase_37 AC 196 ms
54,576 KB
testcase_38 AC 213 ms
54,972 KB
testcase_39 AC 207 ms
57,908 KB
testcase_40 AC 250 ms
59,720 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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