[백준] #9610 사분면 python
2023. 1. 26. 13:05
https://www.acmicpc.net/problem/9610
📕 설명 📕
5가지의 경우로 제1사분면, 제2사분면, 제3사분면, 제4사분면, 축으로 나눠 풀이하였다.
🧑🏻💻 나의 풀이 🧑🏻💻
N = int(input())
Q1 = 0
Q2 = 0
Q3 = 0
Q4 = 0
AX = 0
for _ in range(N):
a,b = map(int,input().split())
if a > 0 and b > 0:
Q1+=1
elif a < 0 and b > 0:
Q2 += 1
elif a < 0 and b < 0:
Q3 += 1
elif a > 0 and b < 0:
Q4 += 1
else:
AX += 1
print("Q1:", Q1)
print("Q2:", Q2)
print("Q3:", Q3)
print("Q4:", Q4)
print("AXIS:", AX)
'Programming > Algorithm' 카테고리의 다른 글
[백준] #1264 모음의 개수 python (0) | 2023.01.28 |
---|---|
[백준] #1568 새 python (0) | 2023.01.27 |
[백준] #1547 공 python (0) | 2023.01.26 |
[백준] #1371 가장 많은 글자 python (0) | 2023.01.25 |
[백준] #10819 차이를 최대로 python (0) | 2023.01.24 |