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

[백준/파이썬] 31472번 갈래의 색종이 자르기

by 현장 2024. 3. 30.

-Code

from math import sqrt
w = int(input())

print(int(sqrt(w * 2) * 4))