답안 #887994

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
887994 2023-12-15T17:28:25 Z Hovhannes1234 별들과 삼각형 (IZhO11_triangle) C++17
0 / 100
0 ms 348 KB
#include <bits/stdc++.h>
using namespace std;

int main() {
	int n;
	cin>>n;
	map <int, int> mp;
	for(int i=1; i<=n; i++){
		int x,y;
		cin>>x>>y;
		mp[x]++;
	}
	long long ans=0;
	for(auto it : mp){
		if(it.second>1){
			ans+=(it.second*it.second-1)/2 * (n-it.second);
		}
	}
	cout<<ans<<endl;
}
# 결과 실행 시간 메모리 Grader output
1 Correct 0 ms 348 KB Output is correct
2 Correct 0 ms 348 KB Output is correct
3 Correct 0 ms 348 KB Output is correct
4 Incorrect 0 ms 348 KB Output isn't correct
5 Halted 0 ms 0 KB -