[Combination] 16938 캠프 준비
https://www.acmicpc.net/problem/16938 16938번: 캠프 준비 난이도가 10, 30인 문제를 고르거나, 20, 30인 문제를 고르면 된다. www.acmicpc.net # 2023.01.18 # 조합 import sys input = sys.stdin.readline from itertools import combinations n, l, r, x = map(int, input().split()) problem = list(map(int, input().split())) answer=0 for i in range(2, n+1): # 2~n개의 수를 선택 가능 for subProb in combinations(problem, i): if l
2023. 1. 18.