반응형
n = int(input())
temp=0
temp_counter={}
for i in range(n):
a,b = map(int,input().split())
if a in list(temp_counter.keys()):
if b != temp_counter[a]:
temp +=1
temp_counter[a]=b
else:
temp_counter[a]=b
print(temp)
반응형
'computer 지식 > 알고리즘 정복기' 카테고리의 다른 글
5597 과제 안 내신 분..? 백준 파이썬 (0) | 2021.10.13 |
---|---|
20546 기적의 매매법 파이썬 백준 (0) | 2021.10.13 |
2578 빙고 백준 파이썬 (0) | 2021.10.13 |
4396 지뢰찾기 백준 파이썬 (0) | 2021.10.13 |
12933 오리 백준 파이썬 (0) | 2021.10.13 |