結果

問題 No.275 中央値を求めよ
ユーザー aaaaasatoriaaaaasatori
提出日時 2018-02-05 09:10:46
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 584 bytes
コンパイル時間 3,088 ms
コンパイル使用メモリ 74,664 KB
実行使用メモリ 54,928 KB
最終ジャッジ日時 2024-07-06 11:19:03
合計ジャッジ時間 9,595 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 94 ms
40,156 KB
testcase_01 AC 101 ms
41,292 KB
testcase_02 AC 116 ms
41,868 KB
testcase_03 WA -
testcase_04 AC 90 ms
39,908 KB
testcase_05 AC 102 ms
41,284 KB
testcase_06 AC 111 ms
41,232 KB
testcase_07 AC 137 ms
42,408 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 130 ms
41,540 KB
testcase_11 RE -
testcase_12 AC 115 ms
41,380 KB
testcase_13 WA -
testcase_14 AC 104 ms
41,100 KB
testcase_15 AC 159 ms
43,212 KB
testcase_16 AC 164 ms
42,476 KB
testcase_17 AC 167 ms
43,008 KB
testcase_18 AC 127 ms
41,448 KB
testcase_19 WA -
testcase_20 AC 167 ms
42,312 KB
testcase_21 AC 147 ms
41,788 KB
testcase_22 AC 168 ms
42,284 KB
testcase_23 WA -
testcase_24 AC 144 ms
41,952 KB
testcase_25 AC 172 ms
42,556 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 138 ms
41,736 KB
testcase_30 AC 116 ms
41,752 KB
testcase_31 AC 160 ms
42,788 KB
testcase_32 AC 115 ms
41,384 KB
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 AC 115 ms
41,460 KB
testcase_38 AC 121 ms
41,436 KB
testcase_39 WA -
testcase_40 AC 174 ms
42,964 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class No275 {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt(); // 整数の個数
		int t[] = new int[n];
		int x; //交換用
		
		for(int i = 0;i < n;i++) {
			t[i] = sc.nextInt();
		}
		
		for(int i = 0;i < n;i++) {
			for(int j = i + 1;j < n;j++) {
				if(t[i] > t[j]) {
					x = t[i];
					t[i] = t[j];
					t[j] = x;
				}
			}
		}
		
		if(n % 2 == 1) {
			System.out.println(t[(n - 1) / 2 + 1]);
		}else {
			System.out.println((float)(t[(n - 1) / 2] + t[(n - 1) / 2 + 1]) / 2);
		}
	}
}
0