結果

問題 No.275 中央値を求めよ
ユーザー aaaaasatoriaaaaasatori
提出日時 2018-02-05 09:16:14
言語 Java21
(openjdk 21)
結果
AC  
実行時間 197 ms / 1,000 ms
コード長 565 bytes
コンパイル時間 3,100 ms
コンパイル使用メモリ 74,472 KB
実行使用メモリ 43,120 KB
最終ジャッジ日時 2024-06-25 00:50:16
合計ジャッジ時間 10,592 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 123 ms
41,048 KB
testcase_01 AC 125 ms
41,364 KB
testcase_02 AC 134 ms
41,980 KB
testcase_03 AC 124 ms
41,300 KB
testcase_04 AC 123 ms
41,320 KB
testcase_05 AC 125 ms
41,048 KB
testcase_06 AC 131 ms
41,332 KB
testcase_07 AC 180 ms
42,068 KB
testcase_08 AC 140 ms
41,728 KB
testcase_09 AC 141 ms
41,580 KB
testcase_10 AC 138 ms
41,432 KB
testcase_11 AC 123 ms
41,596 KB
testcase_12 AC 125 ms
41,324 KB
testcase_13 AC 127 ms
41,260 KB
testcase_14 AC 122 ms
41,180 KB
testcase_15 AC 193 ms
42,764 KB
testcase_16 AC 189 ms
43,120 KB
testcase_17 AC 195 ms
42,520 KB
testcase_18 AC 157 ms
41,596 KB
testcase_19 AC 181 ms
42,184 KB
testcase_20 AC 181 ms
41,932 KB
testcase_21 AC 172 ms
41,848 KB
testcase_22 AC 191 ms
42,472 KB
testcase_23 AC 160 ms
41,892 KB
testcase_24 AC 145 ms
41,448 KB
testcase_25 AC 197 ms
42,320 KB
testcase_26 AC 188 ms
42,968 KB
testcase_27 AC 183 ms
42,188 KB
testcase_28 AC 138 ms
41,352 KB
testcase_29 AC 160 ms
42,280 KB
testcase_30 AC 135 ms
41,608 KB
testcase_31 AC 188 ms
42,408 KB
testcase_32 AC 136 ms
41,460 KB
testcase_33 AC 186 ms
42,360 KB
testcase_34 AC 138 ms
41,256 KB
testcase_35 AC 177 ms
42,860 KB
testcase_36 AC 155 ms
41,868 KB
testcase_37 AC 138 ms
41,548 KB
testcase_38 AC 156 ms
41,460 KB
testcase_39 AC 156 ms
41,808 KB
testcase_40 AC 193 ms
42,600 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