結果

問題 No.275 中央値を求めよ
ユーザー t8m8⛄️t8m8⛄️
提出日時 2015-09-04 22:23:58
言語 Java
(openjdk 23)
結果
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
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 38
権限があれば一括ダウンロードができます

ソースコード

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