python-algorithm
[백준] 16600
무적김두칠
2021. 3. 8. 10:24
1
2
3
4
|
import sys
import math
n=int(sys.stdin.readline())
print(4*math.sqrt(n))
|
cs |
반응형