結果

問題 No.275 中央値を求めよ
ユーザー core123core123
提出日時 2019-04-16 15:56:03
言語 Java21
(openjdk 21)
結果
AC  
実行時間 198 ms / 1,000 ms
コード長 817 bytes
コンパイル時間 2,192 ms
コンパイル使用メモリ 79,252 KB
実行使用メモリ 54,780 KB
最終ジャッジ日時 2024-09-22 08:18:14
合計ジャッジ時間 10,239 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
54,152 KB
testcase_01 AC 132 ms
54,264 KB
testcase_02 AC 146 ms
53,992 KB
testcase_03 AC 130 ms
54,268 KB
testcase_04 AC 133 ms
53,836 KB
testcase_05 AC 132 ms
53,968 KB
testcase_06 AC 142 ms
54,388 KB
testcase_07 AC 185 ms
54,364 KB
testcase_08 AC 152 ms
54,416 KB
testcase_09 AC 148 ms
54,116 KB
testcase_10 AC 152 ms
54,320 KB
testcase_11 AC 141 ms
54,000 KB
testcase_12 AC 137 ms
54,152 KB
testcase_13 AC 134 ms
54,340 KB
testcase_14 AC 134 ms
54,408 KB
testcase_15 AC 195 ms
54,532 KB
testcase_16 AC 198 ms
54,432 KB
testcase_17 AC 196 ms
54,556 KB
testcase_18 AC 162 ms
54,408 KB
testcase_19 AC 178 ms
54,520 KB
testcase_20 AC 191 ms
54,496 KB
testcase_21 AC 173 ms
54,568 KB
testcase_22 AC 191 ms
54,780 KB
testcase_23 AC 170 ms
54,432 KB
testcase_24 AC 167 ms
54,292 KB
testcase_25 AC 191 ms
54,536 KB
testcase_26 AC 187 ms
54,500 KB
testcase_27 AC 189 ms
54,668 KB
testcase_28 AC 145 ms
53,960 KB
testcase_29 AC 174 ms
54,292 KB
testcase_30 AC 144 ms
54,216 KB
testcase_31 AC 189 ms
54,368 KB
testcase_32 AC 152 ms
54,120 KB
testcase_33 AC 191 ms
54,672 KB
testcase_34 AC 146 ms
54,292 KB
testcase_35 AC 188 ms
54,452 KB
testcase_36 AC 188 ms
54,544 KB
testcase_37 AC 146 ms
54,436 KB
testcase_38 AC 167 ms
54,592 KB
testcase_39 AC 162 ms
54,172 KB
testcase_40 AC 192 ms
54,560 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.util.stream.*;
public class Main{
	public static void main(String... args){
		Scanner sc=new Scanner(System.in);
		int n=sc.nextInt();
		int[] a=new int[n];
		for(int i=0;i<n;i++){
			a[i]=sc.nextInt();
		}
		Arrays.sort(a);
		if(n%2==0){
			put(((a[n/2-1])+a[n/2])/2.0);
		}else{
			put(a[n/2]);
		}
	}
	
	public static void print(Object object){
        System.out.print(object);
    }
    public static void put(Object object) {
        System.out.println(object);
    }
    public static void put(){
        System.out.println();
    }
 
    public static void print(String format,Object... args){
        System.out.print(String.format(format,args));
    }
    public static void put(String format,Object... args) {
        System.out.println(String.format(format,args));
    }
}
0