https://www.acmicpc.net/problem/2798
from itertools import combinations
a,b = map(int,input().split())
c = list(map(int,input().split()))
arr = []
for i in combinations(c,3):
arr.append(sum(i))
answer = 0
for i in arr:
if i <= b:
if answer < i:
answer = i
print(answer)
'알고리즘' 카테고리의 다른 글
백준)Hello World! (0) | 2023.02.20 |
---|---|
백준)분해합 (0) | 2023.02.20 |
프로그래머스)문자열 나누기 (0) | 2023.02.19 |
백준)영역구하기 (0) | 2023.02.18 |
프로그래머스)2개 이하로 다른 비트 (0) | 2023.02.17 |