結果

問題 No.275 中央値を求めよ
ユーザー a3636takoa3636tako
提出日時 2016-07-22 18:33:17
言語 Java21
(openjdk 21)
結果
AC  
実行時間 52 ms / 1,000 ms
コード長 2,247 bytes
コンパイル時間 3,374 ms
コンパイル使用メモリ 74,480 KB
実行使用メモリ 49,716 KB
最終ジャッジ日時 2023-09-07 05:31:59
合計ジャッジ時間 5,596 ms
ジャッジサーバーID
(参考情報)
judge12 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
49,208 KB
testcase_01 AC 44 ms
49,432 KB
testcase_02 AC 46 ms
49,228 KB
testcase_03 AC 45 ms
49,136 KB
testcase_04 AC 43 ms
49,256 KB
testcase_05 AC 43 ms
49,220 KB
testcase_06 AC 44 ms
49,240 KB
testcase_07 AC 48 ms
49,304 KB
testcase_08 AC 45 ms
49,200 KB
testcase_09 AC 45 ms
49,208 KB
testcase_10 AC 44 ms
49,256 KB
testcase_11 AC 43 ms
49,056 KB
testcase_12 AC 43 ms
49,280 KB
testcase_13 AC 43 ms
49,176 KB
testcase_14 AC 43 ms
49,232 KB
testcase_15 AC 51 ms
49,220 KB
testcase_16 AC 52 ms
49,336 KB
testcase_17 AC 50 ms
47,256 KB
testcase_18 AC 46 ms
49,128 KB
testcase_19 AC 47 ms
47,496 KB
testcase_20 AC 49 ms
49,252 KB
testcase_21 AC 45 ms
49,132 KB
testcase_22 AC 48 ms
49,228 KB
testcase_23 AC 46 ms
49,308 KB
testcase_24 AC 46 ms
47,768 KB
testcase_25 AC 49 ms
49,344 KB
testcase_26 AC 47 ms
49,352 KB
testcase_27 AC 47 ms
49,312 KB
testcase_28 AC 44 ms
49,396 KB
testcase_29 AC 49 ms
49,348 KB
testcase_30 AC 46 ms
49,116 KB
testcase_31 AC 49 ms
49,212 KB
testcase_32 AC 46 ms
49,224 KB
testcase_33 AC 49 ms
49,180 KB
testcase_34 AC 44 ms
49,716 KB
testcase_35 AC 48 ms
49,220 KB
testcase_36 AC 47 ms
49,580 KB
testcase_37 AC 46 ms
49,616 KB
testcase_38 AC 46 ms
49,136 KB
testcase_39 AC 48 ms
49,236 KB
testcase_40 AC 50 ms
49,244 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;
 
public class Main{
	public void solve(){
		int N = nextInt();
		int[] A = new int[N];
		for(int i = 0; i < N; i++){
			A[i] = nextInt();
		}
		Arrays.sort(A);
		if(N % 2 == 0){
			out.println((A[N / 2] + A[N / 2 - 1]) / 2.0);
		}else{
			out.println(A[N / 2]);
		}
	}
	
	public boolean check(String str, int idx){
		if(idx + 3 >= str.length()) return false;
		if(str.charAt(idx) != 'i') return false;
		if(str.charAt(idx + 1) != 'w') return false;
		if(str.charAt(idx + 2) != 'i') return false;
		return true;
	}
	
	private static PrintWriter out;
	public static void main(String[] args){
		out = new PrintWriter(System.out);
		new Main().solve();
		out.flush();
	}
	
	
	
	public static int nextInt(){
		int num = 0;
		String str = next();
		boolean minus = false;
		int i = 0;
		if(str.charAt(0) == '-'){
			minus = true;
			i++;
		}
		int len = str.length();
		for(;i < len; i++){
			char c = str.charAt(i);
			if(!('0' <= c && c <= '9')) throw new RuntimeException();
			num = num * 10 + (c - '0');
		}
		return minus ? -num : num;
	}
	
	public static long nextLong(){
		long num = 0;
		String str = next();
		boolean minus = false;
		int i = 0;
		if(str.charAt(0) == '-'){
			minus = true;
			i++;
		}
		int len = str.length();
		for(;i < len; i++){
			char c = str.charAt(i);
			if(!('0' <= c && c <= '9')) throw new RuntimeException();
			num = num * 10l + (c - '0');
		}
		return minus ? -num : num;
	}
	public static String next(){
		int c;
		while(!isAlNum(c = read())){}
		StringBuilder build = new StringBuilder();
		build.append((char)c);
		while(isAlNum(c = read())){
			build.append((char)c);
		}
		return build.toString();
	}
	
	
	private static byte[] inputBuffer = new byte[1024];
	private static int bufferLength = 0;
	private static int bufferIndex = 0;
	private static int read(){
		if(bufferLength < 0) throw new RuntimeException();
		if(bufferIndex >= bufferLength){
			try{
				bufferLength = System.in.read(inputBuffer);
				bufferIndex = 0;
			}catch(IOException e){
				throw new RuntimeException(e);
			}
			if(bufferLength <= 0) return (bufferLength = -1);
		}
		return inputBuffer[bufferIndex++];
	}
	
	private static boolean isAlNum(int c){
		return '!' <= c && c <= '~';
	}
}
0