일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- Python
- 다이나믹프로그래밍
- MySQL
- ubuntu
- 다이나믹 프로그래밍
- 명품자바
- 백준 3085번
- 그리디
- 백준 1331번
- AWS
- 백준 17451번
- 백준 15787번
- 백준 1253번
- react
- 백준 1987
- 자바
- SWEA 15612번
- 모각코
- 알고리즘
- 머신러닝과 딥러닝
- 백준
- javascript
- HUFS 모각코 캠프
- SQL
- 그래프
- 백준 16918번
- 백준 2512번
- java_programming
- 백준 18310번
- 깃헙
Archives
- Today
- Total
차곡차곡
[codetree/python] 코드트리 - 아름다운 수 본문
코드트리 백트래킹 연습 - 아름다운 수
n자리 아름다운 수가 몇 개 있는지 구하는 프로그램 작성
def is_beautiful():
for i in range(n):
if i == 0:
now_num = ans[i]
cnt = 1
elif now_num == ans[i]:
cnt += 1
else:
if cnt % now_num == 0:
cnt = 1
now_num = ans[i]
continue
else:
return False
if cnt % now_num == 0:
return True
def choose_num(now):
global cnt
if now == n+1:
if is_beautiful():
cnt += 1
return
for i in range(1, 5):
ans.append(i)
choose_num(now+1)
ans.pop()
n = int(input())
ans = []
cnt = 0
choose_num(1)
print(cnt)
'CS > Algorithm' 카테고리의 다른 글
[codetree/python] 코드트리 - 겹치지 않게 선분 고르기 (1) | 2023.05.16 |
---|---|
[codetree/python] 코드트리 - 강력한 폭발 (0) | 2023.05.16 |
[codetree/python] 코드트리 - k개 중에 1개를 n번 뽑기 (0) | 2023.05.14 |
[BOJ/Python, Javascript] 백준 5073번 - 삼각형과 세 변 (0) | 2023.05.13 |
[프로그래머스/Python] 성격 유형 검사하기 (0) | 2023.05.09 |
Comments