-
백준 3053_택시 기하학알고리즘/백준 2020. 11. 1. 18:34
https://www.acmicpc.net/problem/3053
..
택시 기하학에서 원은 마름모 형태가 된다.
원 : PI * R * R
마름모 : 2 * R * R
#include <stdio.h> #define PI 3.14159265358979 int main(){ float R; scanf("%f", &R); printf("%.6f\n", PI*R*R); printf("%.6f\n", 2.0*R*R); return 0; }
'알고리즘 > 백준' 카테고리의 다른 글
백준 1541_잃어버린 괄호 (0) 2020.11.01 백준 11650_좌표 정렬하기 (0) 2020.11.01 백준 11399_ATM (0) 2020.11.01 백준 1011_Fly me to the Alpha Centauri (0) 2020.10.17 백준 2869_달팽이는 올라가고 싶다 (0) 2020.10.11