제출 #974712

#제출 시각아이디문제언어결과실행 시간메모리
974712vjudge1별들과 삼각형 (IZhO11_triangle)C++17
100 / 100
372 ms9396 KiB
#include <bits/stdc++.h>
using namespace std;

int main() {
    int zx, zy, n, res = 0;
    cin >> n;
    vector<pair<int, int> > p;
    map<int, int> mx, my;
    for (int i=0; i<n; i++) {
        cin >> zx >> zy;
        p.push_back({zx, zy});
        mx[zx]++;
        my[zy]++;
    }
    for (auto i : p) {
        zx = mx[i.first] - 1;
        zy = my[i.second] - 1;
        res += zx * zy;
    }
    cout << res << endl;
    return 0;
}
#Verdict Execution timeMemoryGrader output
Fetching results...