結果

問題 No.275 中央値を求めよ
ユーザー ikawaiikawai
提出日時 2023-09-04 14:27:55
言語 Java21
(openjdk 21)
結果
AC  
実行時間 183 ms / 1,000 ms
コード長 648 bytes
コンパイル時間 2,677 ms
コンパイル使用メモリ 76,180 KB
実行使用メモリ 54,672 KB
最終ジャッジ日時 2024-06-22 12:48:17
合計ジャッジ時間 10,384 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 116 ms
53,768 KB
testcase_01 AC 114 ms
53,728 KB
testcase_02 AC 122 ms
53,584 KB
testcase_03 AC 116 ms
53,964 KB
testcase_04 AC 106 ms
52,944 KB
testcase_05 AC 109 ms
52,764 KB
testcase_06 AC 127 ms
54,132 KB
testcase_07 AC 162 ms
54,272 KB
testcase_08 AC 136 ms
53,944 KB
testcase_09 AC 142 ms
54,052 KB
testcase_10 AC 133 ms
54,576 KB
testcase_11 AC 109 ms
53,456 KB
testcase_12 AC 115 ms
53,740 KB
testcase_13 AC 106 ms
52,920 KB
testcase_14 AC 114 ms
54,200 KB
testcase_15 AC 167 ms
54,636 KB
testcase_16 AC 162 ms
54,604 KB
testcase_17 AC 161 ms
54,268 KB
testcase_18 AC 138 ms
54,236 KB
testcase_19 AC 161 ms
54,508 KB
testcase_20 AC 161 ms
54,308 KB
testcase_21 AC 152 ms
54,128 KB
testcase_22 AC 167 ms
54,504 KB
testcase_23 AC 145 ms
54,280 KB
testcase_24 AC 152 ms
54,180 KB
testcase_25 AC 175 ms
54,312 KB
testcase_26 AC 167 ms
54,332 KB
testcase_27 AC 165 ms
54,672 KB
testcase_28 AC 131 ms
54,116 KB
testcase_29 AC 163 ms
54,112 KB
testcase_30 AC 134 ms
54,240 KB
testcase_31 AC 183 ms
54,476 KB
testcase_32 AC 132 ms
54,560 KB
testcase_33 AC 171 ms
54,348 KB
testcase_34 AC 127 ms
54,408 KB
testcase_35 AC 163 ms
54,372 KB
testcase_36 AC 164 ms
54,136 KB
testcase_37 AC 133 ms
54,068 KB
testcase_38 AC 135 ms
54,132 KB
testcase_39 AC 147 ms
54,472 KB
testcase_40 AC 159 ms
54,156 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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