본문 바로가기
Beakjoon&프로그래머스/파이썬

[백준/파이썬] 25905번 장인은 도구를 탓하지 않는다

by 현장 2023. 6. 5.

-Code

ratio = sorted([float(input()) for _ in range(10)], reverse=True)
res = 1

for i in range(1, 10):
    res *= ratio[i - 1] / i
print(round(res * (10 ** 9), 6))