일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 first-time robot setup guide
- ROS FOXY 튜토리얼
- CodeUp
- nav2 튜토리얼
- CODEUP 6073
- first-time robot setup guide
- ros2 development guides
- Foxy tutorial
- ros2 튜토리얼 환경설정
- nav2 설치
- nav2 getting started
- nav2 tutorial
- docker foxy
- error
- foxy nav2
- Nav2 document
- ros2 remapping
- Python
- humble development guides
- nav2 dev contatiner
- development guides
- ros2 foxy docker
- ros2 튜토리얼
- ros2 환경설정
- ros2 configuring environment
- humble 환경설정
- 코드업
- nav2 development guides
- ros2 foxy tutorial
- nav2 development guides
Archives
- Today
- Total
목록백준 색종이 (1)
BAN2ARU
[백준/Python] 2563번 : 색종이
https://www.acmicpc.net/problem/2563 2563번: 색종이 가로, 세로의 크기가 각각 100인 정사각형 모양의 흰색 도화지가 있다. 이 도화지 위에 가로, 세로의 크기가 각각 10인 정사각형 모양의 검은색 색종이를 색종이의 변과 도화지의 변이 평행하도록 www.acmicpc.net - 풀이 import sys input = sys.stdin.readline n = int(input()) answer = set() for _ in range(n) : a, b = map(int, input().split()) answer.update((i, j) for i in range(a,a+10) for j in range(b, b+10)) print(len(answer)) - 중복된 부분은..
Coding Test/BaekJoon
2023. 5. 29. 17:23