結果

問題 No.275 中央値を求めよ
ユーザー eagleeagle
提出日時 2022-05-26 15:10:24
言語 Java21
(openjdk 21)
結果
AC  
実行時間 190 ms / 1,000 ms
コード長 659 bytes
コンパイル時間 1,882 ms
コンパイル使用メモリ 73,584 KB
実行使用メモリ 43,028 KB
最終ジャッジ日時 2024-09-20 15:00:43
合計ジャッジ時間 9,169 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 112 ms
41,076 KB
testcase_01 AC 114 ms
41,068 KB
testcase_02 AC 127 ms
41,536 KB
testcase_03 AC 119 ms
41,176 KB
testcase_04 AC 111 ms
41,160 KB
testcase_05 AC 102 ms
39,632 KB
testcase_06 AC 123 ms
41,536 KB
testcase_07 AC 170 ms
42,308 KB
testcase_08 AC 134 ms
41,596 KB
testcase_09 AC 136 ms
41,792 KB
testcase_10 AC 127 ms
41,172 KB
testcase_11 AC 113 ms
41,300 KB
testcase_12 AC 120 ms
40,860 KB
testcase_13 AC 119 ms
41,000 KB
testcase_14 AC 113 ms
41,304 KB
testcase_15 AC 187 ms
42,580 KB
testcase_16 AC 184 ms
42,696 KB
testcase_17 AC 181 ms
43,028 KB
testcase_18 AC 148 ms
41,692 KB
testcase_19 AC 178 ms
42,060 KB
testcase_20 AC 177 ms
42,192 KB
testcase_21 AC 150 ms
41,548 KB
testcase_22 AC 186 ms
42,544 KB
testcase_23 AC 176 ms
41,808 KB
testcase_24 AC 149 ms
41,940 KB
testcase_25 AC 190 ms
42,424 KB
testcase_26 AC 174 ms
42,904 KB
testcase_27 AC 179 ms
42,724 KB
testcase_28 AC 131 ms
41,336 KB
testcase_29 AC 158 ms
41,696 KB
testcase_30 AC 120 ms
41,516 KB
testcase_31 AC 186 ms
42,552 KB
testcase_32 AC 136 ms
41,440 KB
testcase_33 AC 186 ms
42,672 KB
testcase_34 AC 115 ms
40,864 KB
testcase_35 AC 174 ms
42,464 KB
testcase_36 AC 144 ms
41,988 KB
testcase_37 AC 127 ms
41,544 KB
testcase_38 AC 138 ms
41,532 KB
testcase_39 AC 141 ms
42,044 KB
testcase_40 AC 174 ms
42,464 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {

	public static void main(String[] args) {
		// TODO 自動生成されたメソッド・スタブ
		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();
		}
		//小さい順に並び替える
		for(int i = 0 ; i < N - 1; i++) {
			for(int j = i + 1; j < N; j++) {
				if(A[i] > A[j]) {
					int num = A[i];
					A[i] = A[j];
					A[j] = num;
				}
			}
		}
		double ans;
		//中央値を求める
		if(N % 2 == 0) {
			ans = (A[N / 2] + A[N / 2 - 1]) / 2.0;
		} else {
			ans = A[N / 2];
		}
		System.out.println(ans);
	}
}
0