본문 바로가기
코딩테스트/백준

2798번

by brown_board 2022. 8. 14.
728x90

 

https://www.acmicpc.net/problem/2798

 

2798번: 블랙잭

첫째 줄에 카드의 개수 N(3 ≤ N ≤ 100)과 M(10 ≤ M ≤ 300,000)이 주어진다. 둘째 줄에는 카드에 쓰여 있는 수가 주어지며, 이 값은 100,000을 넘지 않는 양의 정수이다. 합이 M을 넘지 않는 카드 3장

www.acmicpc.net

from itertools import combinations

n, m = map(int,input().split())
number = map(int,input().split())
number_sum = []
for i in combinations(number, 3):
    number_sum.append(sum(i))
number_sum.sort()
for i in number_sum:
    if i <= m:
        result = i
    else:
        break
print(result)

728x90

'코딩테스트 > 백준' 카테고리의 다른 글

9095  (0) 2022.08.22
11729  (0) 2022.08.18
1149  (0) 2022.08.18
2839  (0) 2022.08.17
2217번  (0) 2022.08.14

댓글