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
- algorithm
- was
- permutations
- 백준
- TDD
- SQL
- greedy
- dictionary
- postreSQL
- codecov
- Django
- combinations
- ws
- stack&que
- Bruteforce
- Q objects
- AWS
- Unit Testing
- Gunicorn
- Python
- Git
- Programmers
- Query
- pytest
- HTTP 완벽 가이드
- stateless
- utils
- stateful
- Stack
- ORM
Archives
- Today
- Total
해피 코딩!
[백준] 블랙잭 2798번 본문
link
def black_jack(value):
lst = list(map(int, input().split(' ')))
max_data =0
for index in range(len(lst)-2):
for indent_1_index in range(index+1, len(lst)-1):
for indent_2_index in range(indent_1_index+1, len(lst)):
data = lst[index]+ lst[indent_1_index]+ lst[indent_2_index]
if (data <=value) and (data>=max_data):
max_data = data
return max_data
_, value = map(int, input().split(' '))
print(black_jack(value))
'알고리즘' 카테고리의 다른 글
[백준] 요세푸스 문제0 (0) | 2020.12.12 |
---|---|
[백준] 영화감독 숌 1436번 (0) | 2020.12.12 |
[백준] 덩치 7568번 (0) | 2020.12.12 |
[프로그래머스] 프린터 (0) | 2020.12.12 |
[프로그래머스] 주식가격 (0) | 2020.12.12 |
Comments