250x250
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 |
Tags
- 설계
- date_format
- 파이썬
- Django
- Len
- 파이썬 슬라이싱
- sql
- 단어 공부
- 백준
- python
- 코딩테스트 연습
- Python3
- where
- ORDER BY
- 프로그래머스
- 프로젝트
- map
- 데이터
- pcce 기출문제
- count
- Join
- YOLOv5
- GIT
- 슬라이싱
- SQL 고득점 Kit
- css
- html
- List Comprehension
- 파이썬 몫
- 아이엠어바텐더
Archives
- Today
- Total
nan + nan = 2nan
[백준] [Python3] #14681. 사분면 고르기 본문
728x90
코드 입력
x = int(input())
y = int(input())
if x > 0 and y > 0:
print('1')
elif x < 0 and y > 0:
print('2')
elif x < 0 and y < 0:
print('3')
else:
print('4')
문제를 보고 어려울 것 같다고 느꼈지만, 잠깐 고민 후엔 생각이 달라졌다.
이것 또한 단순 조건문에 불과한 문제였다.
바로 작성 cut
출처 : 백준 Online Judge
https://www.acmicpc.net/problem/14681
'Python > 백준 알고리즘' 카테고리의 다른 글
[백준] [Python3] #1000. A + B (0) | 2021.08.03 |
---|---|
[백준] [Python3] #2884. 알람 시계 (0) | 2021.08.03 |
[백준] [Python3] #2753. 윤년 (0) | 2021.08.03 |
[백준] [Python3] #9498. 시험 성적 (0) | 2021.08.03 |
[백준] [Python3] #1330. 두 수 비교하기 (0) | 2021.08.03 |
Comments