문제:
입력:
출력:
풀이 방법:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | import itertools Dwarfs=[] for i in range(9): Dwarfs.append(int(input())) Dwarfs.sort() answers=list(itertools.combinations(Dwarfs,7)) for answer in answers: summation=0 for i in answer: summation+=i if summation==100: temp=answer break for i in temp: print(i) | cs |
'Algorithm > Python' 카테고리의 다른 글
[BOJ]7568. 덩치 (0) | 2019.05.19 |
---|---|
[BOJ]2231. 분해합 (0) | 2019.05.18 |
[BOJ]1015. 수열 정렬 (0) | 2019.05.16 |
[BOJ]1547. 공 (0) | 2019.05.15 |
[BOJ]10253. 헨리 (0) | 2019.05.14 |