1. 문제 https://www.acmicpc.net/problem/1002 1002번: 터렛 각 테스트 케이스마다 류재명이 있을 수 있는 위치의 수를 출력한다. 만약 류재명이 있을 수 있는 위치의 개수가 무한대일 경우에는 -1을 출력한다. www.acmicpc.net 2. 풀이 import math import sys input = sys.stdin.readline # n : 테스트 개수 n = int(input()) for i in range(n): x1, y1, r1, x2, y2, r2 = map(int, input().split()) if x1 == x2 and y1 == y2: if r1 == r2: print(-1) elif r1 != r2: print(0) else: dist = math...