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

[백준/파이썬] 30886번 Artistic Souvenir

by 현장 2023. 11. 30.

-Code

from math import pi, sqrt

a = float(input())
res = (sqrt(a / pi) * 2 + 2) ** 2
print(f"{res:.9f}")