結果

問題 No.275 中央値を求めよ
ユーザー brave_reverse_brave_reverse_
提出日時 2016-01-08 15:19:22
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,080 bytes
コンパイル時間 3,585 ms
コンパイル使用メモリ 77,720 KB
実行使用メモリ 54,124 KB
最終ジャッジ日時 2024-09-19 13:08:08
合計ジャッジ時間 10,233 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 AC 126 ms
41,648 KB
testcase_03 AC 107 ms
40,724 KB
testcase_04 AC 103 ms
40,088 KB
testcase_05 AC 115 ms
41,304 KB
testcase_06 AC 123 ms
41,524 KB
testcase_07 AC 162 ms
42,768 KB
testcase_08 AC 129 ms
41,816 KB
testcase_09 AC 137 ms
41,544 KB
testcase_10 AC 140 ms
41,940 KB
testcase_11 WA -
testcase_12 AC 107 ms
39,960 KB
testcase_13 AC 122 ms
41,456 KB
testcase_14 AC 116 ms
41,236 KB
testcase_15 AC 190 ms
43,348 KB
testcase_16 AC 176 ms
42,712 KB
testcase_17 AC 181 ms
42,816 KB
testcase_18 AC 150 ms
42,328 KB
testcase_19 AC 167 ms
42,632 KB
testcase_20 AC 182 ms
43,060 KB
testcase_21 AC 163 ms
42,336 KB
testcase_22 AC 182 ms
42,872 KB
testcase_23 AC 156 ms
42,420 KB
testcase_24 AC 136 ms
41,920 KB
testcase_25 AC 170 ms
42,680 KB
testcase_26 AC 177 ms
43,348 KB
testcase_27 AC 169 ms
42,932 KB
testcase_28 AC 125 ms
41,532 KB
testcase_29 AC 150 ms
42,328 KB
testcase_30 AC 125 ms
41,540 KB
testcase_31 AC 182 ms
43,268 KB
testcase_32 AC 128 ms
41,792 KB
testcase_33 AC 177 ms
43,828 KB
testcase_34 AC 129 ms
41,648 KB
testcase_35 AC 183 ms
42,568 KB
testcase_36 AC 154 ms
42,664 KB
testcase_37 AC 128 ms
42,068 KB
testcase_38 AC 140 ms
42,192 KB
testcase_39 AC 156 ms
42,028 KB
testcase_40 AC 176 ms
43,200 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