일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- ros2 remapping
- ros2 튜토리얼 환경설정
- Foxy tutorial
- Nav2 document
- foxy nav2
- nav2 getting started
- nav2 first-time robot setup guide
- error
- ros2 foxy tutorial
- humble development guides
- nav2 설치
- nav2 튜토리얼
- CodeUp
- nav2 tutorial
- ros2 configuring environment
- nav2 dev contatiner
- nav2 development guides
- ros2 튜토리얼
- ros2 transformations 개념
- docker foxy
- ros2 환경설정
- 코드업
- setting up transformations
- Python
- first-time robot setup guide
- CODEUP 6073
- ROS FOXY 튜토리얼
- ros2 foxy docker
- ros2 development guides
- humble 환경설정
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