結果

問題 No.275 中央値を求めよ
ユーザー fal_rndfal_rnd
提出日時 2017-04-02 21:12:00
言語 Java21
(openjdk 21)
結果
AC  
実行時間 182 ms / 1,000 ms
コード長 579 bytes
コンパイル時間 2,019 ms
コンパイル使用メモリ 75,200 KB
実行使用メモリ 42,600 KB
最終ジャッジ日時 2024-06-25 00:26:36
合計ジャッジ時間 9,531 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
41,268 KB
testcase_01 AC 124 ms
41,344 KB
testcase_02 AC 135 ms
41,344 KB
testcase_03 AC 122 ms
41,032 KB
testcase_04 AC 121 ms
41,128 KB
testcase_05 AC 122 ms
41,324 KB
testcase_06 AC 130 ms
41,520 KB
testcase_07 AC 171 ms
41,972 KB
testcase_08 AC 140 ms
41,292 KB
testcase_09 AC 142 ms
41,540 KB
testcase_10 AC 140 ms
41,508 KB
testcase_11 AC 125 ms
41,472 KB
testcase_12 AC 127 ms
41,428 KB
testcase_13 AC 125 ms
41,608 KB
testcase_14 AC 126 ms
41,356 KB
testcase_15 AC 182 ms
42,580 KB
testcase_16 AC 175 ms
42,580 KB
testcase_17 AC 179 ms
42,504 KB
testcase_18 AC 154 ms
41,768 KB
testcase_19 AC 169 ms
42,140 KB
testcase_20 AC 175 ms
42,292 KB
testcase_21 AC 168 ms
42,076 KB
testcase_22 AC 177 ms
42,252 KB
testcase_23 AC 170 ms
41,448 KB
testcase_24 AC 151 ms
41,604 KB
testcase_25 AC 181 ms
42,296 KB
testcase_26 AC 176 ms
42,420 KB
testcase_27 AC 177 ms
42,368 KB
testcase_28 AC 135 ms
41,636 KB
testcase_29 AC 166 ms
42,032 KB
testcase_30 AC 135 ms
41,472 KB
testcase_31 AC 180 ms
42,504 KB
testcase_32 AC 139 ms
41,484 KB
testcase_33 AC 181 ms
42,228 KB
testcase_34 AC 135 ms
41,476 KB
testcase_35 AC 176 ms
42,264 KB
testcase_36 AC 162 ms
41,784 KB
testcase_37 AC 141 ms
41,484 KB
testcase_38 AC 149 ms
41,688 KB
testcase_39 AC 152 ms
40,908 KB
testcase_40 AC 181 ms
42,600 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main{

	static final Scanner s=new Scanner(System.in);

	public static void main(String args[]){
		input();
		solve();
	}

	private static void input(){
	}
	private static void solve(){
		int n=s.nextInt(),in[]=new int[n];
		for(int i=0;i<n;i++)
			in[i]=s.nextInt();
		Arrays.sort(in);

		System.out.println(getMedian(in));
	}
	public static double getMedian(int[]/*SORTED ARRAY*/ in) {
		if(in.length%2==0) {
			return ((double)in[in.length/2-1]+in[in.length/2])/2;
		}else {
			return in[in.length/2];
		}
	}
}
0