[백준 알고리즘] 2798번 블랙잭 (Python)언어, 알고리즘 공부/백준2020. 3. 15. 21:21
Table of Contents
<Python>
import itertools
N, M = map(int, input().split())
card = list(map(int, input().split()))
ans = 0
for i in itertools.combinations(card, 3):
card_sum = sum(i)
if ans < card_sum and card_sum <= M:
ans = sum(i)
print(ans)
▼링크
https://www.acmicpc.net/problem/2798
반응형
'언어, 알고리즘 공부 > 백준' 카테고리의 다른 글
[백준 알고리즘] 7568번 덩치 (Python) (0) | 2020.03.15 |
---|---|
[백준 알고리즘] 2231번 분해합 (Python) (0) | 2020.03.15 |
[백준 알고리즘] 2775번 부녀회장이 될테야 (Python) (0) | 2020.03.15 |
[백준 알고리즘] 1974번 스택 수열 (Python) (0) | 2020.03.13 |
[백준 알고리즘] 4949번 균형잡힌 세상 (Python) (0) | 2020.03.13 |
@쿠몬e :: ˚˛˚ * December☃ 。* 。˛˚
전공 공부 기록 📘
포스팅이 좋았다면 "좋아요❤️" 또는 "구독👍🏻" 해주세요!