-Code
from sys import stdin
arr = []
res = 0
for i in range(int(stdin.readline())):
a, b = map(int, stdin.readline().split())
if i > 0:
if arr[i - 1][0] == a and arr[i - 1][0] != 0:
res += 1
if arr[i - 1][1] == b and arr[i - 1][1] != 0:
res += 1
if a == b and a != 0:
res += 1
arr.append([a, b])
print(res)
'Beakjoon&프로그래머스 > 파이썬' 카테고리의 다른 글
[백준/파이썬] 30544번 Cuckoo! Cuckoo! (0) | 2024.04.17 |
---|---|
[백준/파이썬] 26502번 Decoder (0) | 2024.04.16 |
[백준/파이썬] 25965번 미션 도네이션 (0) | 2024.04.14 |
[백준/파이썬] 19751번 Fractification (0) | 2024.04.13 |
[백준/파이썬] 24333번 СРЕЩА НА ПРИЯТЕЛИ (0) | 2024.04.12 |