일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- error
- Foxy tutorial
- ros2 remapping
- nav2 first-time robot setup guide
- development guides
- Python
- nav2 development guides
- foxy nav2
- ros2 development guides
- ros2 환경설정
- ros2 configuring environment
- ros2 튜토리얼
- nav2 development guides
- humble development guides
- docker foxy
- ros2 foxy tutorial
- nav2 dev contatiner
- nav2 getting started
- Nav2 document
- 코드업
- humble 환경설정
- nav2 설치
- first-time robot setup guide
- CodeUp
- CODEUP 6073
- ros2 튜토리얼 환경설정
- nav2 tutorial
- nav2 튜토리얼
- ROS FOXY 튜토리얼
- ros2 foxy docker
Archives
- Today
- Total
목록python 9095 (1)
BAN2ARU
[Python/백준] 9095번 : 1, 2, 3 더하기
https://www.acmicpc.net/problem/9095 9095번: 1, 2, 3 더하기 각 테스트 케이스마다, n을 1, 2, 3의 합으로 나타내는 방법의 수를 출력한다. www.acmicpc.net -풀이 if __name__ == '__main__' : sum_comb = [0] * 13 sum_comb[1] = 1 sum_comb[2] = 2 sum_comb[3] = 4 for i in range(4, 12) : sum_comb[i] = sum_comb[i-1] + sum_comb[i-2] + sum_comb[i-3] t = int(input()) for i in range(t) : n = int(input()) print(sum_comb[n])
Coding Test/BaekJoon
2022. 10. 23. 19:00