import java.util.Arrays;
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner kb = new Scanner(System.in);
int n = kb.nextInt();
int[] location = new int[n];
for(int i=0; i<n; i++) {
location[i] = kb.nextInt();
}
Arrays.sort(location);
int length = location.length;
if(length%2 != 0) {
System.out.println(location[length/2]);
}else {
System.out.println(location[length/2-1]);
}
}
}
'공부기록 > 백준' 카테고리의 다른 글
[백준] 11660번 구간 합 구하기 5 (1) | 2023.11.21 |
---|---|
[백준] 11508번 2+1 세일 (2) | 2023.11.21 |
[백준] 11659번 구간 합 구하기 4 - 구간합 알고리즘 (1) | 2023.11.21 |
[백준] 1546번 평균 (0) | 2023.11.21 |
[백준] 5637번 가장 긴 단어 (1) | 2023.11.21 |