結果

問題 No.275 中央値を求めよ
ユーザー kazapyon27kazapyon27
提出日時 2017-05-06 01:18:42
言語 Java21
(openjdk 21)
結果
AC  
実行時間 193 ms / 1,000 ms
コード長 559 bytes
コンパイル時間 3,804 ms
コンパイル使用メモリ 74,684 KB
実行使用メモリ 42,668 KB
最終ジャッジ日時 2024-06-25 00:30:08
合計ジャッジ時間 11,273 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
41,068 KB
testcase_01 AC 131 ms
41,340 KB
testcase_02 AC 139 ms
41,428 KB
testcase_03 AC 116 ms
39,972 KB
testcase_04 AC 128 ms
41,276 KB
testcase_05 AC 116 ms
40,252 KB
testcase_06 AC 144 ms
41,460 KB
testcase_07 AC 179 ms
42,096 KB
testcase_08 AC 144 ms
41,532 KB
testcase_09 AC 148 ms
41,548 KB
testcase_10 AC 152 ms
41,724 KB
testcase_11 AC 128 ms
41,144 KB
testcase_12 AC 131 ms
41,400 KB
testcase_13 AC 131 ms
41,460 KB
testcase_14 AC 134 ms
41,140 KB
testcase_15 AC 190 ms
42,384 KB
testcase_16 AC 193 ms
42,456 KB
testcase_17 AC 192 ms
42,472 KB
testcase_18 AC 173 ms
41,852 KB
testcase_19 AC 182 ms
42,376 KB
testcase_20 AC 187 ms
42,220 KB
testcase_21 AC 175 ms
42,096 KB
testcase_22 AC 192 ms
42,172 KB
testcase_23 AC 175 ms
41,912 KB
testcase_24 AC 166 ms
41,780 KB
testcase_25 AC 188 ms
42,364 KB
testcase_26 AC 190 ms
42,372 KB
testcase_27 AC 185 ms
42,404 KB
testcase_28 AC 141 ms
41,524 KB
testcase_29 AC 179 ms
42,108 KB
testcase_30 AC 141 ms
41,332 KB
testcase_31 AC 185 ms
42,668 KB
testcase_32 AC 146 ms
41,480 KB
testcase_33 AC 184 ms
42,356 KB
testcase_34 AC 140 ms
41,532 KB
testcase_35 AC 186 ms
42,428 KB
testcase_36 AC 176 ms
42,036 KB
testcase_37 AC 155 ms
41,636 KB
testcase_38 AC 158 ms
41,652 KB
testcase_39 AC 164 ms
41,936 KB
testcase_40 AC 185 ms
42,428 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

/*No.275 中央値を求めよ*/
import java.util.*;
public class No275 {
    public static void main(String[] args) {
    	short N;
    	float median;
		try(Scanner input =new Scanner(System.in)){
			N=input.nextShort();
			short data []= new short[N];
			for(short i=0;i<data.length;i++){
				data[i]=input.nextShort();
			}
			Arrays.sort(data);
			if(N%2!=0){
				median=data[data.length/2];
			}else{
				median=(data[data.length/2]+data[data.length/2-1])/2f;
			}
			System.out.println(median);
		}catch(Exception e){
			e.printStackTrace();
		}
    }
}
0