結果

問題 No.275 中央値を求めよ
ユーザー brave_reverse_brave_reverse_
提出日時 2016-01-08 15:30:23
言語 Java21
(openjdk 21)
結果
AC  
実行時間 201 ms / 1,000 ms
コード長 1,081 bytes
コンパイル時間 4,033 ms
コンパイル使用メモリ 77,324 KB
実行使用メモリ 56,864 KB
最終ジャッジ日時 2024-06-24 23:39:22
合計ジャッジ時間 11,452 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 119 ms
52,908 KB
testcase_01 AC 135 ms
54,272 KB
testcase_02 AC 147 ms
54,308 KB
testcase_03 AC 132 ms
54,036 KB
testcase_04 AC 132 ms
54,224 KB
testcase_05 AC 130 ms
54,112 KB
testcase_06 AC 140 ms
54,104 KB
testcase_07 AC 187 ms
54,256 KB
testcase_08 AC 147 ms
54,188 KB
testcase_09 AC 147 ms
54,024 KB
testcase_10 AC 149 ms
54,424 KB
testcase_11 AC 134 ms
54,092 KB
testcase_12 AC 134 ms
54,016 KB
testcase_13 AC 136 ms
53,976 KB
testcase_14 AC 134 ms
54,368 KB
testcase_15 AC 201 ms
56,864 KB
testcase_16 AC 189 ms
56,720 KB
testcase_17 AC 198 ms
56,536 KB
testcase_18 AC 168 ms
54,128 KB
testcase_19 AC 195 ms
54,752 KB
testcase_20 AC 189 ms
54,828 KB
testcase_21 AC 165 ms
54,284 KB
testcase_22 AC 198 ms
56,704 KB
testcase_23 AC 170 ms
54,312 KB
testcase_24 AC 154 ms
54,624 KB
testcase_25 AC 196 ms
56,740 KB
testcase_26 AC 189 ms
56,732 KB
testcase_27 AC 190 ms
54,364 KB
testcase_28 AC 143 ms
54,152 KB
testcase_29 AC 173 ms
54,376 KB
testcase_30 AC 141 ms
54,052 KB
testcase_31 AC 193 ms
56,724 KB
testcase_32 AC 145 ms
54,352 KB
testcase_33 AC 195 ms
56,728 KB
testcase_34 AC 143 ms
54,088 KB
testcase_35 AC 183 ms
54,584 KB
testcase_36 AC 164 ms
54,360 KB
testcase_37 AC 147 ms
54,060 KB
testcase_38 AC 158 ms
54,304 KB
testcase_39 AC 159 ms
54,352 KB
testcase_40 AC 194 ms
56,448 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicorder;
import java.util.Scanner;

public class QNo275 {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		short n = sc.nextShort();
		short[] a = new short[n+1];
		short[] out = new short[n+1];
		a[0] = -10000;
		out[0] = -10000;
		for(int i=1;i<=n;i++){
			a[i] = sc.nextShort();
		}
		for(short i =n;i>0;i--){
			partHeap(i,a);
		}
		for(short k=n;k>=1;k--){
			out[k] = a[1];
			a[1] = a[k];
			a[k] = -10000;
			partHeap((short)1,a);
		}
		
	    double center = -10000;
	    if(n%2==0) center = (double)(out[n/2] + out[n/2+1])/2;
	    else center = out[n/2+1];
	    System.out.println(center);
		
	}
	
	private static void partHeap(short parent,short[] a){
		short cand = -10000;
		short lr = -1;
		short pare = -10000;
		try{
			pare = a[parent];
			cand = a[parent*2];
			lr = 0;
			if(cand<a[parent*2+1]){
				cand = a[parent*2+1];
				lr = 1;
			}	
		}catch(IndexOutOfBoundsException e){
			if(lr==-1) return;
		}
		if(cand > pare){
			a[parent] = cand;
			a[parent*2+lr] = pare;
			partHeap((short)(parent*2+lr),a);
		}
	}
}
0