Recent Posts
Notice
No Rules Rules
사분면 (feat. 백준, 9610번) 본문
728x90
반응형
사분면
https://www.acmicpc.net/problem/9610
// woohyeon.kim
// kim519620.tistory.com
#include <iostream>
using namespace std;
int main() {
ios::sync_with_stdio(false), cin.tie(NULL);
register int N, cnt[4]{0}, axis(0);
cin >> N;
for(register int n = 0, x, y; n < N; ++n){
cin >> x >> y;
if(x == 0 || y == 0)
++axis;
else if(x > 0 && y > 0)
++cnt[0];
else if(x < 0 && y > 0)
++cnt[1];
else if(x < 0 && y < 0)
++cnt[2];
else if(x > 0 && y < 0)
++cnt[3];
}
for(register int i = 0; i < 4; ++i)
cout << 'Q' << i + 1 << ": " << cnt[i] << '\n';
cout << "AXIS: " << axis;
return 0;
}
// *&)*@*
반응형
단순 연산 문제입니다.
728x90
반응형
'생활 > 코테' 카테고리의 다른 글
피보나치 수 4 (feat. 백준, 10826번) (0) | 2023.03.27 |
---|---|
지능형 기차 (feat. 백준, 2455번) (0) | 2023.03.27 |
탁구 경기 (feat. 백준, 27918번) (0) | 2023.03.27 |
다음 소수 (feat. 백준, 4134번) (0) | 2023.03.23 |
시그마 (feat. 백준, 2355번) (0) | 2023.03.23 |
Comments