Beakjoon&프로그래머스/파이썬
[백준/파이썬] 25991번 Lots of Liquid
현장
2022. 12. 16. 21:23
-Code
n = int(input())
nums = list(map(float, input().split()))
result = 0
for num in nums:
result += num ** 3
print(result ** (1/3))