結果

問題 No.275 中央値を求めよ
ユーザー t8m8⛄️t8m8⛄️
提出日時 2015-09-04 22:23:58
言語 Java21
(openjdk 21)
結果
AC  
実行時間 219 ms / 1,000 ms
コード長 744 bytes
コンパイル時間 4,331 ms
コンパイル使用メモリ 77,364 KB
実行使用メモリ 43,016 KB
最終ジャッジ日時 2024-06-24 23:07:26
合計ジャッジ時間 12,916 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 143 ms
41,692 KB
testcase_01 AC 142 ms
41,516 KB
testcase_02 AC 155 ms
42,072 KB
testcase_03 AC 144 ms
41,944 KB
testcase_04 AC 140 ms
41,508 KB
testcase_05 AC 140 ms
41,996 KB
testcase_06 AC 155 ms
41,892 KB
testcase_07 AC 198 ms
42,464 KB
testcase_08 AC 168 ms
42,276 KB
testcase_09 AC 163 ms
42,040 KB
testcase_10 AC 162 ms
41,736 KB
testcase_11 AC 142 ms
41,476 KB
testcase_12 AC 146 ms
41,364 KB
testcase_13 AC 143 ms
41,628 KB
testcase_14 AC 146 ms
41,796 KB
testcase_15 AC 196 ms
42,784 KB
testcase_16 AC 203 ms
42,788 KB
testcase_17 AC 204 ms
42,668 KB
testcase_18 AC 172 ms
42,156 KB
testcase_19 AC 203 ms
42,996 KB
testcase_20 AC 203 ms
42,796 KB
testcase_21 AC 192 ms
42,556 KB
testcase_22 AC 208 ms
42,416 KB
testcase_23 AC 197 ms
42,892 KB
testcase_24 AC 178 ms
42,028 KB
testcase_25 AC 219 ms
42,848 KB
testcase_26 AC 209 ms
42,456 KB
testcase_27 AC 201 ms
42,800 KB
testcase_28 AC 152 ms
41,944 KB
testcase_29 AC 173 ms
42,448 KB
testcase_30 AC 151 ms
42,004 KB
testcase_31 AC 206 ms
43,016 KB
testcase_32 AC 165 ms
42,064 KB
testcase_33 AC 205 ms
42,672 KB
testcase_34 AC 156 ms
41,620 KB
testcase_35 AC 201 ms
42,468 KB
testcase_36 AC 197 ms
42,712 KB
testcase_37 AC 165 ms
42,100 KB
testcase_38 AC 174 ms
42,160 KB
testcase_39 AC 174 ms
42,016 KB
testcase_40 AC 210 ms
42,928 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.*;
import java.awt.geom.*;
import java.math.*;

public class No0275 {

	static final Scanner in = new Scanner(System.in);
	static final PrintWriter out = new PrintWriter(System.out,false);

	static void solve() {
		int n = in.nextInt();
		int[] a = new int[n];
		for (int i=0; i<n; i++) {
			a[i] = in.nextInt();
		}

		Arrays.sort(a);
		out.printf("%3f\n",(n%2 == 0 ? (double)(a[n/2]+a[n/2-1])/2 : a[n/2]));
	}

	public static void main(String[] args) {
		long start = System.currentTimeMillis();

		solve();
		out.flush();

		long end = System.currentTimeMillis();
		//trace(end-start + "ms");
		in.close();
		out.close();
	}

	static void trace(Object... o) { System.out.println(Arrays.deepToString(o));}
}
0