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