백준 3053번: 택시 기하학

용상윤·2021년 3월 28일
0

문제

https://www.acmicpc.net/problem/3053


접근

소수점 조절


python

내 코드

import sys
import math
input = sys.stdin.readline

r = int(input())

ud = format((r ** 2)*math.pi, ".6f")
md = (r ** 2)*2

print( ud )
print("%.6f" %md )

        
profile
달리는 중!

0개의 댓글