일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- docker foxy
- nav2 development guides
- ros2 foxy docker
- nav2 튜토리얼
- nav2 설치
- ROS FOXY 튜토리얼
- ros2 transformations 개념
- humble development guides
- ros2 development guides
- ros2 foxy tutorial
- setting up transformations
- error
- 코드업
- Foxy tutorial
- nav2 getting started
- CodeUp
- nav2 tutorial
- ros2 remapping
- foxy nav2
- ros2 튜토리얼 환경설정
- ros2 튜토리얼
- CODEUP 6073
- nav2 first-time robot setup guide
- ros2 환경설정
- ros2 configuring environment
- Nav2 document
- humble 환경설정
- Python
- nav2 dev contatiner
- first-time robot setup guide
Archives
- Today
- Total
BAN2ARU
CodeUp 6083번 본문
반응형
https://codeup.kr/problem.php?id=6083
[기초-종합] 빛 섞어 색 만들기(설명)(py)
본 문제는 python 의 빠른 기초 학습을 위해 설계된 문제로서 python 코드 제출을 기준으로 설명되어 있습니다. ------ 빨강(red), 초록(green), 파랑(blue) 빛을 섞어 여러 가지 다른 색 빛을 만들어 내려
codeup.kr
r, g, b = map(int, input().split())
count = 0
for x in range(0, r) :
for y in range(0, g) :
for z in range (0, b) :
print(x,y,z)
count += 1
print(count)
728x90
'Coding Test > CodeUp' 카테고리의 다른 글
CodeUp 6086번 (0) | 2022.03.09 |
---|---|
CodeUp 6084번 (0) | 2022.03.09 |
CodeUp 6082번 (0) | 2022.03.09 |
CodeUp 6080번 (0) | 2022.03.09 |
CodeUp 6079번 (0) | 2022.03.09 |
Comments