# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
531750 | christinelynn | 별들과 삼각형 (IZhO11_triangle) | C++17 | 291 ms | 9088 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
/*
Does he have IGM on CF?
-neko_nyaa
*/
#include <bits/stdc++.h>
using namespace std;
//constant
const int mod=1e9+7;
const long long mod2=998244353LL;
const long long inf=(long long)1e18;
//define
#define PB push_back
#define MP make_pair
#define pi acos(-1)
#define int long long
//typedef
typedef long long ll;
typedef pair<int,int> pii;
typedef map<int,int> mii;
typedef map<string,int> msi;
typedef set<int> SI;
typedef priority_queue<int> pqi;
signed main()
{
ios_base::sync_with_stdio(false);
cin.tie(NULL);
//freopen("triangles.in", "r", stdin);
//freopen("triangles.out", "w", stdout);
int n;
cin >> n;
int x[n],y[n];
map<int,int> x1,y1;
for(int i=0;i<n;i++)
{
cin >> x[i] >> y[i];
x1[x[i]]++;
y1[y[i]]++;
}
int ans=0;
for(int i=0;i<n;i++)
{
ans+=(x1[x[i]]-1)*(y1[y[i]]-1);
}
cout << ans << '\n';
return 0;
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |