Algorithm
[BOJ] [C++] 16486 운동장 한 바퀴
도라프
2022. 6. 26. 23:45
https://www.acmicpc.net/problem/16486
코드
#include <iostream>
#define PI 3.141592
using namespace std;
int main() {
double d1, d2;
cin >> d1 >> d2;
printf("%.6f\n", d1 * 2 + 2 * PI * d2);
}