백준 BAEKJOON 33663번 루미의 진정한™ 보라색 찾기 [PYTHON/파이썬][목차여기] (BRONZE Ⅲ)https://www.acmicpc.net/problem/33663 주어진 식에 맞춰서 RGB의 수치를 HSV로 바꿔주면 된다. Hlo, Hhi = map(int, input().split())Slo, Shi = map(int, input().split())Vlo, Vhi = map(int, input().split())R, G, B = map(int, input().split())# VV, m = max(R, G, B), min(R, G, B)# SS = 255 * (V - m) / V# Hif V == R: H = 60 * (G - B) / (V - m)elif..