結果

問題 No.275 中央値を求めよ
ユーザー springspring
提出日時 2019-06-12 14:30:42
言語 Java21
(openjdk 21)
結果
AC  
実行時間 191 ms / 1,000 ms
コード長 675 bytes
コンパイル時間 2,360 ms
コンパイル使用メモリ 76,224 KB
実行使用メモリ 42,640 KB
最終ジャッジ日時 2024-10-10 11:10:23
合計ジャッジ時間 10,135 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 112 ms
39,924 KB
testcase_01 AC 123 ms
41,316 KB
testcase_02 AC 137 ms
41,316 KB
testcase_03 AC 112 ms
40,992 KB
testcase_04 AC 124 ms
41,388 KB
testcase_05 AC 123 ms
41,120 KB
testcase_06 AC 133 ms
41,132 KB
testcase_07 AC 168 ms
42,092 KB
testcase_08 AC 136 ms
41,564 KB
testcase_09 AC 145 ms
41,328 KB
testcase_10 AC 146 ms
41,944 KB
testcase_11 AC 127 ms
41,344 KB
testcase_12 AC 132 ms
41,272 KB
testcase_13 AC 129 ms
41,088 KB
testcase_14 AC 131 ms
40,908 KB
testcase_15 AC 191 ms
42,220 KB
testcase_16 AC 186 ms
42,640 KB
testcase_17 AC 183 ms
42,376 KB
testcase_18 AC 157 ms
41,604 KB
testcase_19 AC 190 ms
41,972 KB
testcase_20 AC 183 ms
42,496 KB
testcase_21 AC 171 ms
41,688 KB
testcase_22 AC 182 ms
42,564 KB
testcase_23 AC 174 ms
41,952 KB
testcase_24 AC 164 ms
41,564 KB
testcase_25 AC 187 ms
42,620 KB
testcase_26 AC 175 ms
42,332 KB
testcase_27 AC 173 ms
42,388 KB
testcase_28 AC 137 ms
41,500 KB
testcase_29 AC 173 ms
41,904 KB
testcase_30 AC 138 ms
41,464 KB
testcase_31 AC 188 ms
42,220 KB
testcase_32 AC 143 ms
41,776 KB
testcase_33 AC 175 ms
42,084 KB
testcase_34 AC 142 ms
41,372 KB
testcase_35 AC 181 ms
42,368 KB
testcase_36 AC 171 ms
41,696 KB
testcase_37 AC 144 ms
41,644 KB
testcase_38 AC 149 ms
41,900 KB
testcase_39 AC 147 ms
41,668 KB
testcase_40 AC 183 ms
42,588 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.ArrayList;
import java.util.Collections;
import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int count = sc.nextInt();
		ArrayList<Integer> numList = new ArrayList<Integer>();
		for(int i=0;i<count;i++){
			int inputNum = sc.nextInt();
			numList.add(inputNum);
		}
		sc.close();
		Collections.sort(numList);
		if(numList.size()%2!=0){
			System.out.println(numList.get(numList.size()/2));
		}else if(numList.size()%2==0){
			double result = (numList.get(numList.size()/2-1)+numList.get(numList.size()/2))/(double)2;
			System.out.println(result);
		}

	}// mainmethod

} // class
0