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
- Java
- OS
- 정렬
- 알고리즘
- react
- memory
- error
- CPU 스케줄링
- js to ts
- Operating System
- 토이프로젝트
- 협업
- 일상
- web
- 기초100제
- 백준
- 파이썬
- 리덕스장바구니
- 공부
- 분할메모리할당
- 코드업
- codeup
- Spring
- 자료구조
- 스프링
- 타입스크립트
- Redux
- react-redux
- 프로그래머스
- C++
Archives
- Today
- Total
목록2798 (1)
감자튀김 공장🍟
[백준/2798] 블랙잭 (with 파이썬)
✔ 문제 ✔ 풀이 import sys from itertools import combinations input = sys.stdin.readline n, m = map(int, input().split()) numbers = list(map(int, input().split())) combi = list(combinations(numbers, 3)) sum_combi = [] for i in combi: sum_combi.append(i[0] + i[1] + i[2]) max_n = 0 for i in sum_combi: if max_n < i
Algorithm/BOJ
2022. 11. 25. 14:37