結果

問題 No.275 中央値を求めよ
ユーザー dogwood0424dogwood0424
提出日時 2017-11-29 12:53:03
言語 Java21
(openjdk 21)
結果
AC  
実行時間 181 ms / 1,000 ms
コード長 802 bytes
コンパイル時間 3,353 ms
コンパイル使用メモリ 77,856 KB
実行使用メモリ 42,808 KB
最終ジャッジ日時 2024-06-25 00:45:17
合計ジャッジ時間 10,784 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
41,484 KB
testcase_01 AC 127 ms
41,376 KB
testcase_02 AC 134 ms
41,452 KB
testcase_03 AC 127 ms
41,340 KB
testcase_04 AC 127 ms
41,188 KB
testcase_05 AC 123 ms
41,328 KB
testcase_06 AC 138 ms
41,564 KB
testcase_07 AC 160 ms
42,372 KB
testcase_08 AC 138 ms
41,476 KB
testcase_09 AC 139 ms
41,672 KB
testcase_10 AC 142 ms
41,584 KB
testcase_11 AC 126 ms
41,340 KB
testcase_12 AC 125 ms
41,340 KB
testcase_13 AC 127 ms
41,296 KB
testcase_14 AC 126 ms
41,596 KB
testcase_15 AC 177 ms
42,492 KB
testcase_16 AC 176 ms
42,552 KB
testcase_17 AC 180 ms
42,808 KB
testcase_18 AC 163 ms
41,920 KB
testcase_19 AC 175 ms
42,072 KB
testcase_20 AC 164 ms
42,248 KB
testcase_21 AC 154 ms
42,096 KB
testcase_22 AC 179 ms
42,532 KB
testcase_23 AC 169 ms
41,996 KB
testcase_24 AC 158 ms
41,760 KB
testcase_25 AC 178 ms
42,156 KB
testcase_26 AC 174 ms
42,380 KB
testcase_27 AC 181 ms
42,200 KB
testcase_28 AC 137 ms
41,468 KB
testcase_29 AC 168 ms
42,188 KB
testcase_30 AC 138 ms
41,148 KB
testcase_31 AC 176 ms
42,104 KB
testcase_32 AC 137 ms
41,680 KB
testcase_33 AC 175 ms
42,304 KB
testcase_34 AC 137 ms
41,336 KB
testcase_35 AC 178 ms
42,152 KB
testcase_36 AC 166 ms
41,760 KB
testcase_37 AC 135 ms
41,392 KB
testcase_38 AC 157 ms
41,720 KB
testcase_39 AC 157 ms
41,800 KB
testcase_40 AC 172 ms
42,496 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class No275{
	static void swap(int[]a,int idx1,int idx2) {
		int t = a[idx1];	a[idx1]=a[idx2];	a[idx2]=t;
	}
	static void quickSort(int[]a,int left,int right) {
		int pl = left;
		int pr = right;
		int x = a[(pl+pr)/2];

		do {
			while(a[pl]<x) pl++;
			while(a[pr]>x) pr--;
			if(pl <= pr)
				swap(a,pl++,pr--);
		}while(pl<=pr);

		if(left<pr) quickSort(a,left,pr);
		if(pl<right)quickSort(a,pl,right);
	}

	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();
		}

		quickSort(a,0,n-1);

		double med=0.0;

		if(n%2==0) {
			med = (a[(n/2)-1]+a[n/2])/2.0;
		}
		else if(n%2!=0) {
			med = a[n/2];
			}

		System.out.println(med);


	}

}
0