| # | Time | Username | Problem | Language | Result | Execution time | Memory | 
|---|---|---|---|---|---|---|---|
| 349637 | my99n | 별들과 삼각형 (IZhO11_triangle) | C++17 | 401 ms | 13292 KiB | 
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include<bits/stdc++.h>
using namespace std;
int x[300100], y[300100];
map<int,long long> mx, my;
int main(){
  ios_base::sync_with_stdio(false);
  cin.tie(NULL);
  int n; cin >> n;
  for (int i = 0; i < n; i++) {
    cin >> x[i] >> y[i];
    mx[x[i]]++; my[y[i]]++;
  }
  long long ans=0;
  for (int i = 0; i < n; i++) ans+=(mx[x[i]]-1)*(my[y[i]]-1);
  cout << ans;
  return 0;
}
| # | Verdict | Execution time | Memory | Grader output | 
|---|---|---|---|---|
| Fetching results... | ||||
