結果

問題 No.275 中央値を求めよ
ユーザー kuramubonnkuramubonn
提出日時 2023-02-01 20:58:13
言語 Java21
(openjdk 21)
結果
AC  
実行時間 205 ms / 1,000 ms
コード長 531 bytes
コンパイル時間 2,317 ms
コンパイル使用メモリ 75,968 KB
実行使用メモリ 42,772 KB
最終ジャッジ日時 2024-07-01 14:19:03
合計ジャッジ時間 10,624 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 137 ms
41,300 KB
testcase_01 AC 139 ms
41,520 KB
testcase_02 AC 152 ms
41,984 KB
testcase_03 AC 136 ms
41,024 KB
testcase_04 AC 136 ms
41,624 KB
testcase_05 AC 135 ms
40,956 KB
testcase_06 AC 146 ms
41,412 KB
testcase_07 AC 190 ms
42,248 KB
testcase_08 AC 155 ms
41,528 KB
testcase_09 AC 153 ms
41,820 KB
testcase_10 AC 155 ms
41,596 KB
testcase_11 AC 120 ms
40,112 KB
testcase_12 AC 137 ms
41,408 KB
testcase_13 AC 138 ms
41,528 KB
testcase_14 AC 135 ms
41,224 KB
testcase_15 AC 192 ms
42,352 KB
testcase_16 AC 205 ms
42,736 KB
testcase_17 AC 199 ms
42,200 KB
testcase_18 AC 167 ms
41,540 KB
testcase_19 AC 197 ms
41,980 KB
testcase_20 AC 199 ms
42,772 KB
testcase_21 AC 182 ms
41,908 KB
testcase_22 AC 197 ms
42,400 KB
testcase_23 AC 193 ms
42,316 KB
testcase_24 AC 161 ms
41,736 KB
testcase_25 AC 194 ms
42,156 KB
testcase_26 AC 198 ms
41,864 KB
testcase_27 AC 199 ms
42,328 KB
testcase_28 AC 148 ms
41,200 KB
testcase_29 AC 187 ms
41,952 KB
testcase_30 AC 148 ms
41,620 KB
testcase_31 AC 192 ms
42,592 KB
testcase_32 AC 150 ms
41,688 KB
testcase_33 AC 199 ms
42,444 KB
testcase_34 AC 147 ms
41,332 KB
testcase_35 AC 193 ms
41,736 KB
testcase_36 AC 189 ms
41,480 KB
testcase_37 AC 157 ms
41,464 KB
testcase_38 AC 174 ms
41,924 KB
testcase_39 AC 162 ms
42,172 KB
testcase_40 AC 200 ms
42,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
import java.util.ArrayList;
import java.util.Collections;
import java.util.List;
class Main{
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int num = sc.nextInt();
		List<Integer> list = new ArrayList<Integer>();
		
		for(int i = 0 ; i < num ; i++)list.add(sc.nextInt());
		
		Collections.sort(list);
		
		if(num % 2 == 0) {
			System.out.println((float)(list.get(num / 2 ) + (list.get(num / 2 - 1) )) / 2);
		}else {
			System.out.println(list.get(num / 2 ));
		}
	}
}
0