https://www.acmicpc.net/problem/3053
import math
r = int(input())
print('%f'%float(r**2*math.pi))
print('%f'%float(2*r**2))
유클리드 기하학에서의 원의 넓이: pi*r^2
택시 기하학에서의 원의 넓이: 두 대각선의 길이가 같은 마름모 = (1/2*r^2)*4 = 2*r^2
'알고리즘 > 백준' 카테고리의 다른 글
백준 10872: 팩토리얼 (Python) (0) | 2021.09.04 |
---|---|
백준 1002: 터렛 (Python) (0) | 2021.09.02 |
백준 4153: 직각삼각형 (Python) (0) | 2021.09.02 |
백준 3009: 네 번째 점 (Python) (0) | 2021.09.02 |
백준 1085: 직사각형에서 탈출 (Python) (0) | 2021.09.02 |