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
- 싱글톤 컨테이너
- Kotlin
- 백준 13460 Python
- 컨베이어 벨트 위의 로봇 Python
- 객체 지향 설계와 스프링
- 백준 20055 컨베이어 벨트 위의 로봇
- Python
- 자바 ORM 표준 JPA 프로그래밍 7장
- KotlinInAction
- 스프링 핵심 원리 - 기본편
- 기능개발 python
- 코틀린
- 스프링 컨테이너와 스프링 빈
- 코틸린인액션
- 20055
- 스프링 핵심 원리 이해
- Kotlin in action 3장
- 20055 컨베이어 벨트 위의 로봇
- 스프링 핵심 원리
- 코틀린인액션
- Kotlin In Action
- Kotlin in action 6장
- spring
- Kotlin in action 5장
- kotlin in action 정리
- 7장 고급매핑
- 백준
- 고급매핑
- Kotlin in action 10장
- 13460 구슬탈출 2
Archives
- Today
- Total
목록9934 (1)
기록하는 습관
[백준] 9934 완전 이진 트리
문제 www.acmicpc.net/problem/9934 코드 K = int(input()) # 입력 받는 K building = list(map(int, input().split())) # 입력받는 배열 answer = [0] * (2 ** K + 1) index = 0 # 입력 받은 배열 building을 순회할 때 사용하는 index def inorder(i, depth): # 중위 순회 global index if depth == K: # base condition answer[i] = building[index] index += 1 else: inorder(i * 2, depth + 1) answer[i] = building[index] index += 1 inorder(i * 2 + 1, de..
알고리즘/[문제풀이] 백준
2021. 5. 30. 20:15