結果

問題 No.275 中央値を求めよ
ユーザー aaaaasatoriaaaaasatori
提出日時 2018-02-05 09:13:24
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 564 bytes
コンパイル時間 3,774 ms
コンパイル使用メモリ 74,856 KB
実行使用メモリ 55,684 KB
最終ジャッジ日時 2024-07-06 11:42:08
合計ジャッジ時間 12,990 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 133 ms
53,720 KB
testcase_04 AC 136 ms
54,008 KB
testcase_05 WA -
testcase_06 AC 146 ms
53,916 KB
testcase_07 AC 191 ms
54,180 KB
testcase_08 AC 149 ms
53,856 KB
testcase_09 AC 150 ms
54,000 KB
testcase_10 WA -
testcase_11 AC 136 ms
53,928 KB
testcase_12 AC 134 ms
53,884 KB
testcase_13 AC 134 ms
55,684 KB
testcase_14 AC 133 ms
53,824 KB
testcase_15 WA -
testcase_16 AC 209 ms
55,008 KB
testcase_17 AC 203 ms
54,716 KB
testcase_18 WA -
testcase_19 AC 195 ms
54,344 KB
testcase_20 AC 202 ms
54,748 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 176 ms
54,240 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 191 ms
54,236 KB
testcase_27 AC 197 ms
54,576 KB
testcase_28 AC 144 ms
53,976 KB
testcase_29 AC 175 ms
54,016 KB
testcase_30 AC 145 ms
53,980 KB
testcase_31 AC 205 ms
54,648 KB
testcase_32 AC 149 ms
54,348 KB
testcase_33 AC 203 ms
54,244 KB
testcase_34 AC 144 ms
54,052 KB
testcase_35 AC 199 ms
54,452 KB
testcase_36 AC 172 ms
54,324 KB
testcase_37 AC 152 ms
53,876 KB
testcase_38 AC 161 ms
54,220 KB
testcase_39 AC 167 ms
54,076 KB
testcase_40 AC 207 ms
54,456 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 / 2]);
		}else {
			System.out.println((float)((t[n / 2] + t[n / 2 - 1]) / 2));
		}
	}
}
0