[백준] #1547 공 python
2023. 1. 26. 06:00
https://www.acmicpc.net/problem/1547
📕 설명 📕
공이 바뀐 위치를 계속해서 저장하여 출력한다.
🧑🏻💻 나의 풀이 🧑🏻💻
M = int(input())
tmp = 1
for i in range(M):
a, b = map(int,input().split())
if tmp == a:
tmp = b
elif tmp == b:
tmp = a
print(tmp)
'Programming > Algorithm' 카테고리의 다른 글
[백준] #1568 새 python (0) | 2023.01.27 |
---|---|
[백준] #9610 사분면 python (0) | 2023.01.26 |
[백준] #1371 가장 많은 글자 python (0) | 2023.01.25 |
[백준] #10819 차이를 최대로 python (0) | 2023.01.24 |
[백준] #2501 약수 구하기 python (0) | 2023.01.23 |