728x90
문제링크
https://www.acmicpc.net/problem/18310
코드
# 안테나
n = int(input())
homeList = list(map(int, input().split()))
homeList.sort()
idx = (homeList[(n-1)//2])
print(idx)
728x90
'코딩테스트' 카테고리의 다른 글
정렬_심화25) 실패율 _ python (0) | 2023.09.25 |
---|---|
4주차 - 정렬 (0) | 2023.09.25 |
BFS&DFS_심화21) 인구이동 _ python (0) | 2023.09.25 |
BFS&DFS_심화20) 감시 피하기 _ python (0) | 2023.09.25 |
BFS&DFS_심화19) 연산자 끼워 넣기 _ python (0) | 2023.09.25 |