일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 추석맞이 코딩챌린지
- Re
- 그리디
- 위클리 챌린지
- 동적 계획법
- backjoon
- 정렬
- Zip
- 카카오
- Set
- BFS
- lambda
- 재귀함수
- 프로그래머스
- programmers
- java
- heapq
- 파이썬
- 백준
- dfs
- divmod
- 정규식
- 다익스트라
- 이분탐색
- 수학
- 자바
- KAKAO BLIND RECRUITMENT
- python
- Combinations
- DateTime
Archives
- Today
- Total
상상쓰
[백준] 어린 왕자 본문
https://www.acmicpc.net/problem/1004
하나의 원(행성계의 경계)이 있을 때, 출발점과 도착점이 원의 안 또는 바깥에 있는 경우 진입 또는 이탈이 필요가 없다.
즉, 출발점과 도착점 중 하나의 점이 원 안에 있는 경우만 answer 을 1씩 더해서 반환하면 된다.
import sys
T = int(sys.stdin.readline())
for i in range(T):
x1, y1, x2, y2 = map(int, sys.stdin.readline().split())
n = int(sys.stdin.readline())
answer = 0
for j in range(n):
cx, cy, r = map(int, sys.stdin.readline().split())
a = 1 if (x1 - cx)**2 + (y1 - cy)**2 <= r**2 else 0
b = 1 if (x2 - cx)**2 + (y2 - cy)**2 <= r**2 else 0
if a + b == 1: answer += 1
print(answer)
'Coding Test' 카테고리의 다른 글
[프로그래머스] 금과 은 운반하기 (0) | 2021.09.17 |
---|---|
[백준] 인형들 (0) | 2021.09.16 |
[백준] 최소공배수 (0) | 2021.09.14 |
[백준] 파도반 수열 (0) | 2021.09.14 |
[백준] 윤년 (0) | 2021.09.14 |
Comments