현제의 현재이야기
[백준/python] 18310 - 안테나 본문
n = int(input())
arr = list(map(int,input().split()))
arr = sorted(arr)
print(arr[(n - 1)//2])
중앙값을 구하면 된다...
'algorithm' 카테고리의 다른 글
[백준/python] 1331 - 나이트투어 (0) | 2022.09.27 |
---|---|
[백준/python] 15787 - 기차가 어둠을 헤치고 은하수를 (1) | 2022.09.22 |
[백준/python] 2644 - 촌수계산 (1) | 2022.09.18 |
[백준/python] 15486 - 퇴사2 (0) | 2022.09.07 |
[백준/python] 11060 - 점프 점프 (0) | 2022.09.05 |
Comments