728x90
https://www.acmicpc.net/problem/14467
오늘은 쉬운 문제 하나만...
값이 없으면 추가하고, 있으면 들어있는 값과 비교해서 다른 경우에 길을 건너갔다고 체크하면된다.
# import sys; input = sys.stdin.readline
def main():
N = int(input())
cow = [None for _ in range(11)]
answer = 0
for _ in range(N):
a, b = map(int, input().split())
if cow[a] is None:
cow[a] = b
elif cow[a] != b:
answer += 1
cow[a] = b
print(answer)
if __name__ == "__main__":
main()
'STUDY > Algorithm' 카테고리의 다른 글
[백준] 7511 소셜 네트워킹 어플리케이션 python (0) | 2022.01.31 |
---|---|
[백준] 16507 어두운 건 무서워 python (0) | 2022.01.30 |
[백준]15684 사다리 조작 C++, python (0) | 2022.01.28 |
[백준] 15666 N과 M(12) python (0) | 2022.01.27 |
[백준] 15663 N과 M(9) python (0) | 2022.01.27 |