티스토리 뷰
반응형
Python3.x
1.비루하다
N = int(input())
ball = [1, 0, 0]
for i in range(N):
x, y = map(int, input().split())
if ball[y - 1] == 1:
ball[y - 1] = 0
ball[x - 1] = 1
elif ball[x - 1] == 1:
ball[x - 1] = 0
ball[y - 1] = 1
print(ball.index(1) + 1)
N = int(input())
ball = [0, 1, 0, 0]
for i in range(N):
x, y = map(int, input().split())
ball[x], ball[y] = ball[y], ball[x]
print(ball.index(1))
https://www.acmicpc.net/problem/1547
'C, C++ > Baekjoon Online Judge' 카테고리의 다른 글
Baekjoon 백준 1259번 팰린드롬수 (0) | 2019.11.01 |
---|---|
Baekjoon 백준 11365번 !밀비 급일 (0) | 2019.08.30 |
Baekjoon 백준 2563번 색종이 (0) | 2019.08.06 |
Baekjoon 백준 10988번 팰린드롬인지 확인하기 (0) | 2019.08.06 |
Baekjoon 백준 2864번 5와 6의 차이 (0) | 2019.08.06 |
댓글
티스토리 방명록
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
Blog is powered by
Tistory / Designed by
Tistory
Contact: j0n9m1n1@gmail.com
Contact: j0n9m1n1@gmail.com