제출 #532123

#제출 시각아이디문제언어결과실행 시간메모리
532123kebine별들과 삼각형 (IZhO11_triangle)C++17
100 / 100
516 ms14748 KiB
#include <bits/stdc++.h>
#define pb push_back
#define fi first
#define se second
typedef long long ll;
using namespace std;

ll n, ans;
pair<ll,ll>arr[300005];
map<ll,ll>x,y;

int main(){
  cin >> n;
  
  for(int i = 0; i < n; i++){
    cin >> arr[i].fi >> arr[i].se;
    x[arr[i].fi]++;
    y[arr[i].se]++;
  }
  for(int i = 0; i < n; i++){
    ans += (x[arr[i].fi]-1) * (y[arr[i].se]-1);
  }
  cout << ans << endl;
}

#Verdict Execution timeMemoryGrader output
Fetching results...