https://www.acmicpc.net/problem/2798
import itertools
n, m = map(int, input().split())
numbers = list(map(int, input().split()))
result = 0
for number in itertools.combinations(numbers, 3):
if result < sum(number) <= m:
result = sum(number)
print(result)
'Python > Baekjoon' 카테고리의 다른 글
백준 1260번 : DFS와 BFS (0) | 2022.12.06 |
---|---|
백준 2178번 : 미로 탐색 (0) | 2022.11.28 |
백준 11399번 : ATM (0) | 2022.11.16 |
백준 5585번 : 거스름돈 (0) | 2022.11.16 |
백준 6603번 : 로또 (0) | 2022.11.14 |