結果

問題 No.275 中央値を求めよ
ユーザー Mcpu3Mcpu3
提出日時 2018-06-22 00:47:47
言語 Java21
(openjdk 21)
結果
AC  
実行時間 207 ms / 1,000 ms
コード長 457 bytes
コンパイル時間 2,232 ms
コンパイル使用メモリ 74,820 KB
実行使用メモリ 54,916 KB
最終ジャッジ日時 2024-06-25 01:47:37
合計ジャッジ時間 10,488 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
53,904 KB
testcase_01 AC 130 ms
53,852 KB
testcase_02 AC 142 ms
54,104 KB
testcase_03 AC 133 ms
54,064 KB
testcase_04 AC 130 ms
54,124 KB
testcase_05 AC 128 ms
53,948 KB
testcase_06 AC 141 ms
54,208 KB
testcase_07 AC 189 ms
54,428 KB
testcase_08 AC 141 ms
54,292 KB
testcase_09 AC 145 ms
53,852 KB
testcase_10 AC 148 ms
54,208 KB
testcase_11 AC 132 ms
54,252 KB
testcase_12 AC 131 ms
53,988 KB
testcase_13 AC 133 ms
53,960 KB
testcase_14 AC 135 ms
53,880 KB
testcase_15 AC 206 ms
54,728 KB
testcase_16 AC 206 ms
54,820 KB
testcase_17 AC 204 ms
54,680 KB
testcase_18 AC 162 ms
54,144 KB
testcase_19 AC 189 ms
54,516 KB
testcase_20 AC 197 ms
54,564 KB
testcase_21 AC 174 ms
54,476 KB
testcase_22 AC 204 ms
54,916 KB
testcase_23 AC 175 ms
54,304 KB
testcase_24 AC 156 ms
54,400 KB
testcase_25 AC 205 ms
54,864 KB
testcase_26 AC 201 ms
54,384 KB
testcase_27 AC 196 ms
54,272 KB
testcase_28 AC 143 ms
53,796 KB
testcase_29 AC 178 ms
54,568 KB
testcase_30 AC 141 ms
53,988 KB
testcase_31 AC 198 ms
54,480 KB
testcase_32 AC 150 ms
54,164 KB
testcase_33 AC 207 ms
54,388 KB
testcase_34 AC 146 ms
54,156 KB
testcase_35 AC 194 ms
54,504 KB
testcase_36 AC 178 ms
54,312 KB
testcase_37 AC 148 ms
54,380 KB
testcase_38 AC 157 ms
54,672 KB
testcase_39 AC 159 ms
54,324 KB
testcase_40 AC 204 ms
54,784 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

class no275{
	public static void main(String[] args) {
		Scanner stdIn=new Scanner(System.in);
		int n,i,j,t,a[]=new int[1000];
		n=stdIn.nextInt();
		for(i=0;i<n;i++) a[i]=stdIn.nextInt();
		for(i=0;i<n-1;i++) {
			for(j=n-1;j>i;j--) {
				if(a[j-1]>a[j]) {
					t=a[j-1];
					a[j-1]=a[j];
					a[j]=t;
				}
			}
		}
		if(n%2==0) System.out.print((a[n/2-1]+a[n/2])/2.);
		else System.out.print(a[n/2]);
	}
}
0