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

[백준/파이썬] 25991번 Lots of Liquid

by 현장 2022. 12. 16.

-Code

n = int(input())
nums = list(map(float, input().split()))
result = 0
for num in nums:
    result += num ** 3
print(result ** (1/3))