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

[백준/파이썬] 21983번 Basalt Breakdown

by 현장 2022. 11. 30.

-Code

from math import sqrt

n = int(input())

print(round(6 * sqrt((2 * n) / (3 * sqrt(3))), 8))