[swexpert] 2063. 중간값 찾기 (java)

728x90
반응형

배열을 입력받고 정렬 후 n/2 위치에 있는 값 출력 

import java.util.Arrays;
import java.util.Scanner;

public class Solution {

	public static void main(String[] args) {
		Scanner sc=new Scanner(System.in);
		int n=sc.nextInt();
		int[] a=new int[n];
		for(int i=0;i<n;i+=1) {
			a[i]=sc.nextInt();
		}
		Arrays.sort(a);
		System.out.println(a[n/2]);
		
	}

}
728x90
반응형
TAGS.

Comments