본문 바로가기
백준 알고리즘/시뮬레이션

백준 1547 파이썬

by paysmile 2018. 11. 13.


location=[0,1,0,0]
num = int(input())
for i in range(num):
    a,b = map(int, input().split(" "))
    if location[a] == 1 or location[b] == 1:
        temp = location[a]
        location[a] = location[b]
        location[b] = temp
print(location.index(1))


'백준 알고리즘 > 시뮬레이션' 카테고리의 다른 글

백준 14499번 C++  (0) 2019.01.27
백준 14503번 C++  (0) 2019.01.26
백준 10219 파이썬  (0) 2018.11.12
백준 1057 파이썬  (0) 2018.11.06
백준 1094 파이썬  (0) 2018.11.06