https://www.acmicpc.net/problem/9610
#Solution
case = int(input())
Q1 = Q2 = Q3 = Q4 = AXIS = 0
for _ in range(case):
x, y = map(int, input().split())
if x == 0 or y == 0:
AXIS += 1
elif x > 0 and y > 0:
Q1 += 1
elif x < 0 and y > 0:
Q2 += 1
elif x < 0 and y < 0:
Q3 += 1
elif x > 0 and y < 0:
Q4 += 1
print("Q1: %d" %(Q1))
print("Q2: %d" %(Q2))
print("Q3: %d" %(Q3))
print("Q4: %d" %(Q4))
print("AXIS: %d" %(AXIS))
'Programming [Python] > 백준 알고리즘 솔루션' 카테고리의 다른 글
#187 백준 파이썬 [10103] 주사위 게임 (0) | 2019.11.05 |
---|---|
#186 백준 파이썬 [10162] 전자레인지 (0) | 2019.11.05 |
#184 백준 파이썬 [10988] 팰린드롬인지 확인하기 (0) | 2019.11.05 |
#183 백준 파이썬 [5717] 상근이의 친구들 (0) | 2019.11.05 |
#182 백준 파이썬 [10886] 0 = not cute / 1 = cute (0) | 2019.11.05 |