알고리즘 예제/Python

[Python] - Coding Test / 6084 문제

KimTory 2022. 3. 6. 19:52

✍ CodeUp 문제  / 출처 : Codeup

👉 Input

44100 16 2 10

 

👉 Output

1.7 MB

 

👉 Source Code

h, b, c, s = map(int, input().split())

print("{:0.1f}".format(h * b * c * s / 8 / 1024 / 1024), "MB")