Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- text
- 차세대 보안 리더 양성
- 11109
- 2501
- 5586
- 10995
- 정보보호 영재원
- 10833
- BoB 후기
- 11943
- 5086
- 영재원
- 리뷰
- EOF
- BOB
- 2965
- BoB 7기
- 2476
- 정보보호 영재교육원
- 차세대 보안 리더 양성 프로그램
- 1547
- 2506
- 4101
- acmicpc
- Python
- Best of the Best
- 공주대 정보보호
- 영재교육원
- boj
- 2605
Archives
- Today
- Total
짱해커가 되어보자
boj 9610 본문
* Solved 기준 브론즈3 단순 풀이
l,a = [0]*4,0
for _ in range(int(input())):
x,y = map(int, input().split())
if(x == 0 or y == 0): a += 1
else: l[0 if x>0 and y>0 else 1 if x<0 and y>0 else 2 if x<0 and y<0 else 3] += 1
for i in range(4): print('Q{}: {}'.format(i+1, l[i]))
print('AXIS:', a)
Comments