일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- ROS FOXY 튜토리얼
- nav2 first-time robot setup guide
- Foxy tutorial
- docker foxy
- ros2 foxy tutorial
- ros2 foxy docker
- 코드업
- ros2 환경설정
- ros2 튜토리얼 환경설정
- humble 환경설정
- Python
- nav2 tutorial
- ros2 configuring environment
- development guides
- error
- humble development guides
- ros2 remapping
- ros2 튜토리얼
- Nav2 document
- ros2 development guides
- CODEUP 6073
- foxy nav2
- nav2 튜토리얼
- nav2 development guides
- nav2 development guides
- nav2 dev contatiner
- CodeUp
- nav2 설치
- nav2 getting started
- first-time robot setup guide
Archives
- Today
- Total
목록python 3003번 (1)
BAN2ARU
[백준/Python] 3003번 : 킹, 퀸, 룩, 비숍, 나이트, 폰
https://www.acmicpc.net/problem/3003 3003번: 킹, 퀸, 룩, 비숍, 나이트, 폰 첫째 줄에 동혁이가 찾은 흰색 킹, 퀸, 룩, 비숍, 나이트, 폰의 개수가 주어진다. 이 값은 0보다 크거나 같고 10보다 작거나 같은 정수이다. www.acmicpc.net 풀이 import sys a = list(map(int, sys.stdin.readline().split())) x = [1, 1, 2, 2, 2, 8] for i in range(6): print((x[i] - a[i]), end=' ')
Coding Test/BaekJoon
2022. 8. 17. 18:47