-코드
n = int(input())
students = list(map(int, input().split()))
teams = []
for i in range(n):
r = max(students) + min(students)
teams.append(r)
students.remove(max(students))
students.remove(min(students))
print(min(teams))
'Beakjoon&프로그래머스 > 파이썬' 카테고리의 다른 글
[백준/파이썬] 2676번 라스칼 삼각형 (0) | 2021.12.21 |
---|---|
[백준/파이썬] 2161번 카드1 (0) | 2021.12.21 |
[백준/파이썬] 1672번 DNA 해독 (0) | 2021.12.20 |
[프로그래머스/파이썬] 제일 작은 수 제거하기 (0) | 2021.12.19 |
[프로그래머스/파이썬] 문자열을 정수로 바꾸기 (0) | 2021.12.19 |