제출 #888252

#제출 시각아이디문제언어결과실행 시간메모리
888252kokoue별들과 삼각형 (IZhO11_triangle)C++14
100 / 100
239 ms10064 KiB
#include<bits/stdc++.h>
using namespace std;
struct point
{
    int x,y;
};
point p[300000];
//int x[100000],y[100000];
map<int,int> y,x;
int n;
int main()
{
    ios_base::sync_with_stdio(false);
    cin.tie(0);
    cin>>n;
    for(int i=0;i<n;i++)
    {
        cin>>p[i].x>>p[i].y;
        x[p[i].x]++;
        y[p[i].y]++;
    }
    int ans=0;
    for(int i=0;i<n;i++)
    {
        ans+=(x[p[i].x]-1)*(y[p[i].y]-1);
    }
    cout<<ans<<"\n";
}
#Verdict Execution timeMemoryGrader output
Fetching results...