Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- 솝트 후기
- 프로그래머스
- 페이지네이션
- 솝트
- 파이썬 #백준 #BFS
- 멋사
- yolov5
- 절차지향
- Python
- AWS
- jQuery
- nodejs
- spring-boot
- 합격후기
- Java
- 서류전형
- 면접전형
- 백준
- MongoDB
- 사물인식
- 인공지능
- jwt
- 카카오
- S3
- EC2
- objectdetection
- 피로그래밍
- 파이썬
- 멋쟁이사자처럼
- CRUD
Archives
- Today
- Total
찔끔찔끔씩😎
[백준] 2798번 블랙잭 - python 본문
728x90
https://www.acmicpc.net/problem/2798
문제
n장 중 3장을 골라 3장의 합이 m에 최대한 가까운 최대의 수를 출력하라
해결1 , 코드1
n개의 수를 오름차순으로 정렬한 뒤
for문을 3번 충첩하여 3장 합의 경우의 수를 모두 구해본다.
n,m = map(int,input().split())
arr = list(map(int, input().split()))
arr.sort
sum = 0
for i in range(0,n):
for j in range(i+1,n):
for k in range(j+1,n):
if arr[i] + arr[j] + arr[k] > m:
continue
else:
sum = max(sum, arr[i] + arr[j] + arr[k])
print(sum)
해결2 , 코드2
combinations 사용하기
3장의 조합을 combinations를 사용해 list화 해둔 뒤, for 문 하나로 구현 한다.
# combinations 이용
from itertools import combinations
n,m = map(int,input().split())
arr = list(map(int, input().split()))
cases = list(combinations(arr,3))
max_sum = 0
for case in cases:
temp = sum(case)
if max_sum < temp <= m:
max_sum = temp
print(max_sum)
'Algorithm > 백준' 카테고리의 다른 글
[백준] 1018번 체스판 다시 칠하기- python (0) | 2021.11.13 |
---|---|
[백준] 7568번 덩치- python (0) | 2021.11.13 |
[백준] 2231번 분해합- python (0) | 2021.11.11 |
[백준] 15686번 치킨 배달 - python (0) | 2021.11.10 |
[백준] 3190번 뱀 - python (삼성 sw 기출) (0) | 2021.11.05 |
Comments