이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <cstdio>
#include <cmath>
#include <vector>
struct Point {
int x;
int y;
};
int main() {
std::vector<Point> bundle;
int N;
int R;
scanf(" %d %d", &N, &R);
for (int i = 0; i < N; ++i) {
int x;
int y;
scanf(" %d %d", &x, &y);
Point p;
p.x = x;
p.y = y;
bundle.push_back(p);
}
if (N == 2) {
double dis = sqrt((bundle[0].x - bundle[1].x) * (bundle[0].x - bundle[1].x) +
(bundle[0].y - bundle[1].y) * (bundle[0].y - bundle[1].y));
printf("%lf", 2 * dis + 2 * 3.14159265359 * R);
}
else {
printf("i don't know");
}
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |