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
- 프로그래머스
- 웹어플리케이션 서버
- 백준 16236
- JVM
- 백준 17626
- 백준 파이썬
- Spring
- java
- 백준
- spring oauth
- re.split
- 백준 19238
- MySQL
- with recursive
- 백준 15685
- 프로래머스
- MSA
- 백준 16719
- spring cloud
- spring security
- 백준 17779
- Spring Boot
- Coroutine
- sql 기술면접
- 파이썬
- 백준 16235
- java 기술면접
- Kotlin
- springboot
- JPA
Archives
- Today
- Total
목록백준 6603 (1)
시작이 반
[백준] 6603번(python 파이썬)
백트래킹의 쉬운 문제이다 숫자가 6개인 조합을 구해주면 된다. K와 S가 합쳐진 list를 입력받는데 이차원 list로 풀어도 되지만 동적 변수명 할당이라는 것을 봐서 이번에 이렇게 풀어봤다. 동적 변수명할당, 사용 i = 1 while True: globals()['lotto{}'.format(i)] = list(map(int, input().split())) if globals()['lotto{}'.format(i)][0] == 0: break globals()['visited{}'.format(i)] = [False] * (globals()['lotto{}'.format(i)][0] + 1) i += 1 lotto1, lotto2, ... visited1, visited2, ... lotto1 ->..
알고리즘/백준
2021. 2. 3. 16:21