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
- MySQL
- 웹어플리케이션 서버
- JVM
- spring security
- java
- 프로래머스
- 백준
- spring cloud
- 백준 16236
- 백준 17626
- Spring Boot
- 프로그래머스
- with recursive
- re.split
- Spring
- springboot
- 백준 16235
- 백준 16719
- 백준 17779
- java 기술면접
- 백준 15685
- spring oauth
- Kotlin
- MSA
- sql 기술면접
- 백준 19238
- 파이썬
- 백준 파이썬
- JPA
- Coroutine
Archives
- Today
- Total
목록백준 16968 (1)
시작이 반
[백준] 16968번(python 파이썬)
백트래킹 관련 문제여서 백트래킹으로 풀었는데 생각해보면 경우의 수를 구하는 문제라 백트래킹으로 풀지 않아도 된다 중복 형식일경우 경우의 수를 체크해주면된다.. ex) dd : 10*9 ddd: 10 * 9 * 10 cc : 26 * 25 ccc: 26 * 25 * 26 cdc : 26 * 10 * 26 이런식.... car_number = list(input()) result = 0 def BackTrack(depth, dup): global result if depth == len(car_number): result += 1 return if car_number[depth-1] != car_number[depth]: dup = -1 if car_number[depth] == 'c': temp = [Fa..
알고리즘/백준
2021. 2. 4. 00:07