[Python] BOJ 16481번. 원 전문가 진우 작성일 2020-06-10 | In Algorithm | 16481번. 원 전문가 진우 문제 링크 https://www.acmicpc.net/problem/16481 풀이 코드 12345678910# 16481번. 원 전문가 진우 # https://m.blog.naver.com/mondvopel/220216908924 # 1/r = 1/r1 + 1/r2 + 1/r3 r1, r2, r3 = map(int, input().split()) r = 1/r1+1/r2+1/r3 print(1/r) 비고