結果

問題 No.275 中央値を求めよ
ユーザー yamax3232yamax3232
提出日時 2017-02-16 16:01:55
言語 Java21
(openjdk 21)
結果
AC  
実行時間 311 ms / 1,000 ms
コード長 966 bytes
コンパイル時間 3,746 ms
コンパイル使用メモリ 77,328 KB
実行使用メモリ 48,528 KB
最終ジャッジ日時 2024-06-25 00:21:18
合計ジャッジ時間 14,190 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 141 ms
41,840 KB
testcase_01 AC 144 ms
41,708 KB
testcase_02 AC 175 ms
42,708 KB
testcase_03 AC 135 ms
41,164 KB
testcase_04 AC 142 ms
41,632 KB
testcase_05 AC 128 ms
40,884 KB
testcase_06 AC 165 ms
42,240 KB
testcase_07 AC 253 ms
45,932 KB
testcase_08 AC 205 ms
43,036 KB
testcase_09 AC 199 ms
42,932 KB
testcase_10 AC 203 ms
42,680 KB
testcase_11 AC 146 ms
41,560 KB
testcase_12 AC 144 ms
41,640 KB
testcase_13 AC 145 ms
41,592 KB
testcase_14 AC 142 ms
41,520 KB
testcase_15 AC 311 ms
47,928 KB
testcase_16 AC 310 ms
48,528 KB
testcase_17 AC 286 ms
47,968 KB
testcase_18 AC 239 ms
44,912 KB
testcase_19 AC 270 ms
46,308 KB
testcase_20 AC 269 ms
46,468 KB
testcase_21 AC 249 ms
45,052 KB
testcase_22 AC 287 ms
47,388 KB
testcase_23 AC 247 ms
45,740 KB
testcase_24 AC 205 ms
43,104 KB
testcase_25 AC 298 ms
47,864 KB
testcase_26 AC 276 ms
47,776 KB
testcase_27 AC 271 ms
46,452 KB
testcase_28 AC 181 ms
42,576 KB
testcase_29 AC 248 ms
44,912 KB
testcase_30 AC 178 ms
42,296 KB
testcase_31 AC 276 ms
46,848 KB
testcase_32 AC 196 ms
42,928 KB
testcase_33 AC 272 ms
47,796 KB
testcase_34 AC 177 ms
42,204 KB
testcase_35 AC 265 ms
46,188 KB
testcase_36 AC 249 ms
45,344 KB
testcase_37 AC 211 ms
43,956 KB
testcase_38 AC 210 ms
42,776 KB
testcase_39 AC 222 ms
44,720 KB
testcase_40 AC 311 ms
47,604 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Q2 {

	public static void main(String[] args) {
		// TODO 自動生成されたメソッド・スタブ
		Scanner kb=new Scanner(System.in);
		int n=kb.nextInt();
		double ar[]=new double[n];
		double num;
		for(int i=0;i<n;i++){
			ar[i]=kb.nextDouble();
		}
		//並べ替え
for(int j=0;j<n;j++){
		for(int i=0;i<n;i++){
			if(i+1<n){
				num=0;
				if(ar[i]>ar[i+1]){
					num=ar[i];
					ar[i]=ar[i+1];
					ar[i+1]=num;
				}else{
					continue;
				}
			}else{
				break;
			}
		}
	}

	/*	for(int i=0;i<n;i++){
			System.out.printf("%d",ar[i]);
		}
		ちゃんと並べ替えられていることを確認*/

		if(n%2==0){
			double a=ar[n/2-1]+ar[n/2];
			try{
			System.out.printf("%f",
					a/2);
			}catch(NumberFormatException e){
				System.out.printf("%f",a/2);
			}
			
		}else{
			try{
			System.out.printf("%f",ar[n/2]);
			}catch(NumberFormatException e){
				System.out.printf("%f",ar[n/2]);
			}
		}

	}

}
0