제출 #349636

#제출 시각아이디문제언어결과실행 시간메모리
349636my99n별들과 삼각형 (IZhO11_triangle)C++17
0 / 100
1 ms364 KiB
#include<bits/stdc++.h> using namespace std; int x[300100], y[300100]; map<int,long long> mx, my; int main(){ ios_base::sync_with_stdio(false); cin.tie(NULL); int n; cin >> n; for (int i = 0; i < n; i++) { cin >> x[i] >> y[i]; mx[x[i]]++; my[y[i]]++; } long long ans; for (int i = 0; i < n; i++) ans+=(mx[x[i]]-1)*(my[y[i]]-1); cout << ans; return 0; }

컴파일 시 표준 에러 (stderr) 메시지

triangle.cpp: In function 'int main()':
triangle.cpp:15:34: warning: 'ans' may be used uninitialized in this function [-Wmaybe-uninitialized]
   15 |   for (int i = 0; i < n; i++) ans+=(mx[x[i]]-1)*(my[y[i]]-1);
      |                               ~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~
#Verdict Execution timeMemoryGrader output
Fetching results...