일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- nav2 tutorial
- ros2 튜토리얼
- error
- nav2 development guides
- ros2 remapping
- development guides
- ROS FOXY 튜토리얼
- CodeUp
- nav2 설치
- Python
- nav2 dev contatiner
- nav2 development guides
- foxy nav2
- humble 환경설정
- 코드업
- ros2 튜토리얼 환경설정
- nav2 first-time robot setup guide
- ros2 환경설정
- docker foxy
- first-time robot setup guide
- ros2 foxy tutorial
- CODEUP 6073
- humble development guides
- Nav2 document
- nav2 튜토리얼
- ros2 configuring environment
- Foxy tutorial
- ros2 development guides
- ros2 foxy docker
- nav2 getting started
Archives
- Today
- Total
목록python 2745 (1)
BAN2ARU
[백준/Python] 2745번 : 진법변환
https://www.acmicpc.net/problem/2745 2745번: 진법 변환 B진법 수 N이 주어진다. 이 수를 10진법으로 바꿔 출력하는 프로그램을 작성하시오. 10진법을 넘어가는 진법은 숫자로 표시할 수 없는 자리가 있다. 이런 경우에는 다음과 같이 알파벳 대문자를 www.acmicpc.net - 풀이 import sys input = sys.stdin.readline b, n = input().rstrip().split() n = int(n) b = b[::-1] num = '0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ' answer = 0 for i, s in enumerate(b) : answer += num.index(s) * (n**i) print(answe..
Coding Test/BaekJoon
2023. 5. 31. 14:50