본문 바로가기

카테고리 없음

#386 백준 파이썬 [1547] 공

https://www.acmicpc.net/problem/1547

 

PYTHON CODE

cup = [0, 1, 0, 0]

for _ in range(int(input())):
    X, Y = map(int, input().split())
    temp =  cup[X]
    cup[X] = cup[Y]
    cup[Y] = temp
    
print(cup.index(1))