728x90
https://www.acmicpc.net/problem/2121
import sys
n = int(sys.stdin.readline())
a, b = map(int, sys.stdin.readline().split())
data = set()
for _ in range(n):
data.add(tuple(map(int, sys.stdin.readline().split())))
cnt = 0
for i in data:
if (i[0]+a, i[1]) in data and (i[0], i[1]+b) in data and (i[0]+a, i[1]+b) in data:
cnt += 1
print(cnt)
반응형
'전.py' 카테고리의 다른 글
[python] 백준 2117 원형 댄스 (0) | 2022.03.07 |
---|---|
[python] 백준 2078 무한이진트리 (0) | 2022.03.07 |
[python] 프로그래머스 튜플 (0) | 2022.03.03 |
[python] 프로그래머스 시저 암호 (0) | 2022.03.03 |
[python] 백준 9095 1, 2, 3 더하기 (0) | 2022.02.27 |