結果

問題 No.275 中央値を求めよ
ユーザー villachvillach
提出日時 2017-10-13 16:05:31
言語 Java21
(openjdk 21)
結果
AC  
実行時間 200 ms / 1,000 ms
コード長 523 bytes
コンパイル時間 4,020 ms
コンパイル使用メモリ 76,444 KB
実行使用メモリ 42,844 KB
最終ジャッジ日時 2024-06-25 00:42:18
合計ジャッジ時間 11,337 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
41,596 KB
testcase_01 AC 132 ms
41,192 KB
testcase_02 AC 149 ms
41,500 KB
testcase_03 AC 134 ms
41,384 KB
testcase_04 AC 134 ms
41,224 KB
testcase_05 AC 131 ms
41,452 KB
testcase_06 AC 140 ms
41,552 KB
testcase_07 AC 184 ms
41,968 KB
testcase_08 AC 146 ms
41,408 KB
testcase_09 AC 147 ms
41,764 KB
testcase_10 AC 150 ms
41,676 KB
testcase_11 AC 134 ms
41,272 KB
testcase_12 AC 120 ms
41,560 KB
testcase_13 AC 134 ms
41,040 KB
testcase_14 AC 136 ms
41,408 KB
testcase_15 AC 200 ms
42,484 KB
testcase_16 AC 192 ms
42,428 KB
testcase_17 AC 182 ms
42,540 KB
testcase_18 AC 169 ms
41,928 KB
testcase_19 AC 187 ms
42,188 KB
testcase_20 AC 193 ms
42,844 KB
testcase_21 AC 185 ms
41,904 KB
testcase_22 AC 189 ms
42,492 KB
testcase_23 AC 181 ms
41,640 KB
testcase_24 AC 161 ms
41,928 KB
testcase_25 AC 194 ms
42,560 KB
testcase_26 AC 186 ms
42,404 KB
testcase_27 AC 184 ms
41,920 KB
testcase_28 AC 141 ms
41,428 KB
testcase_29 AC 167 ms
42,060 KB
testcase_30 AC 141 ms
41,448 KB
testcase_31 AC 178 ms
42,396 KB
testcase_32 AC 148 ms
41,816 KB
testcase_33 AC 190 ms
42,764 KB
testcase_34 AC 143 ms
41,212 KB
testcase_35 AC 187 ms
42,336 KB
testcase_36 AC 172 ms
41,904 KB
testcase_37 AC 153 ms
41,396 KB
testcase_38 AC 164 ms
41,940 KB
testcase_39 AC 164 ms
41,904 KB
testcase_40 AC 193 ms
42,620 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder;

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

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