-코드
a = sorted([int(input()) for _ in range(9)])
for i in range(8):
if len(a) == 7:
break
for j in range(i + 1, 9):
if a[i] + a[j] == sum(a) - 100:
a.pop(i)
a.pop(j-1)
break
for i in a:
print(i)
'Beakjoon&프로그래머스 > 파이썬' 카테고리의 다른 글
[프로그래머스/파이썬] 두 개 뽑아서 더하기 (0) | 2021.05.16 |
---|---|
[프로그래머스/파이썬] 로또의 최고 순위와 최저 순위 (0) | 2021.05.15 |
[백준/파이썬]30400번 백설 공주와 일곱 난쟁이 (0) | 2021.05.14 |
[백준/파이썬]1874번 스택 수열 (0) | 2021.05.14 |
[백준/파이썬]1929번 소수 구하기 (0) | 2021.05.13 |