結果

問題 No.275 中央値を求めよ
ユーザー FVRChanFVRChan
提出日時 2017-10-02 21:05:48
言語 Java21
(openjdk 21)
結果
AC  
実行時間 179 ms / 1,000 ms
コード長 447 bytes
コンパイル時間 1,933 ms
コンパイル使用メモリ 74,348 KB
実行使用メモリ 43,004 KB
最終ジャッジ日時 2024-06-25 00:41:44
合計ジャッジ時間 9,747 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 120 ms
41,544 KB
testcase_01 AC 124 ms
41,636 KB
testcase_02 AC 133 ms
41,492 KB
testcase_03 AC 120 ms
41,536 KB
testcase_04 AC 119 ms
41,636 KB
testcase_05 AC 121 ms
41,628 KB
testcase_06 AC 131 ms
41,516 KB
testcase_07 AC 164 ms
42,188 KB
testcase_08 AC 139 ms
42,008 KB
testcase_09 AC 138 ms
41,748 KB
testcase_10 AC 138 ms
41,532 KB
testcase_11 AC 124 ms
41,520 KB
testcase_12 AC 126 ms
41,588 KB
testcase_13 AC 119 ms
41,328 KB
testcase_14 AC 120 ms
40,484 KB
testcase_15 AC 176 ms
42,660 KB
testcase_16 AC 174 ms
42,664 KB
testcase_17 AC 178 ms
42,604 KB
testcase_18 AC 148 ms
41,816 KB
testcase_19 AC 154 ms
42,144 KB
testcase_20 AC 170 ms
42,708 KB
testcase_21 AC 167 ms
42,144 KB
testcase_22 AC 174 ms
42,436 KB
testcase_23 AC 165 ms
42,052 KB
testcase_24 AC 153 ms
42,044 KB
testcase_25 AC 179 ms
42,784 KB
testcase_26 AC 177 ms
42,632 KB
testcase_27 AC 166 ms
42,500 KB
testcase_28 AC 131 ms
41,736 KB
testcase_29 AC 163 ms
42,364 KB
testcase_30 AC 135 ms
41,636 KB
testcase_31 AC 168 ms
42,536 KB
testcase_32 AC 136 ms
41,972 KB
testcase_33 AC 178 ms
43,004 KB
testcase_34 AC 145 ms
41,544 KB
testcase_35 AC 169 ms
42,408 KB
testcase_36 AC 169 ms
42,076 KB
testcase_37 AC 145 ms
41,540 KB
testcase_38 AC 153 ms
42,200 KB
testcase_39 AC 151 ms
41,884 KB
testcase_40 AC 176 ms
42,548 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.Scanner;
public class Main{
	private static Scanner sc=new Scanner(System.in);
	public static void main(String args[])throws Exception{
		int n=sc.nextInt();
		int are[]=new int[n];
		for(int i=0;i<n;i++)are[i]=sc.nextInt();
		Arrays.sort(are);
		if(are.length%2==1)System.out.println(are[are.length/2]);
		else {
			int res=are[are.length/2-1]+are[are.length/2];
			System.out.println(res/2.0);
		};
	}
}
0