https://swexpertacademy.com/main/code/problem/problemDetail.do
SW Expert Academy
SW 프로그래밍 역량 강화에 도움이 되는 다양한 학습 컨텐츠를 확인하세요!
swexpertacademy.com
import java.util.Scanner;
import java.io.FileInputStream;
import java.util.Arrays;
class Solution
{
public static void main(String args[]) throws Exception
{
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]);
}
}
'알고리즘 > 삼성 SW expert Academy' 카테고리의 다른 글
[SWEA] 1859. 백만 장자 프로젝트_JAVA (0) | 2022.05.04 |
---|---|
[SWEA] 2027. 대각선 출력하기_JAVA (0) | 2022.05.04 |
[SWEA] 2058. 자릿수 더하기_JAVA (0) | 2022.05.04 |
[SWEA] 2056. 연월일 달력_JAVA (0) | 2022.05.04 |
[SWEA] 2050. 알파벳을 숫자로 변환_JAVA (0) | 2022.05.04 |