Submission #336909

# Submission time Handle Problem Language Result Execution time Memory
336909 2020-12-17T09:04:28 Z boykut Star triangles (IZhO11_triangle) C++14
0 / 100
1 ms 364 KB
#include <map>
#include <fstream>

using namespace std;

struct point {
  int x, y;
};

map < int, int > ox;
map < int, int > oy;

ifstream cin("triangles.in");
ofstream cout("triangles.out");

int32_t main() {
  ios::sync_with_stdio(0);
  cin.tie(0);
  int n;
  cin >> n;
  point a[n];
  for (int i = 0; i < n; i++) {
    cin >> a[i].x >> a[i].y;
    ox[a[i].x]++;
    oy[a[i].y]++;
  }
  int64_t res = 0;
  for (int i = 0; i < n; i++) {
    res += (ox[a[i].x] - 1) * (ox[a[i].y] - 1);
  }
  cout << res << '\n';
  return 0;
}
# Verdict Execution time Memory Grader output
1 Incorrect 1 ms 364 KB Output isn't correct
2 Halted 0 ms 0 KB -