🏷 문제




💡 코드
import sys
def find(target, direction):
global wheel_info, rotate_target
state = [0,0,0,0]
state[target] = direction
for i in range(target+1,4):
if wheel_info[i-1][2] != wheel_info[i][6]:
state[i] = state[i-1] * -1
else:
break
for i in range(target-1, -1, -1):
if wheel_info[i+1][6] != wheel_info[i][2]:
state[i] = state[i+1] * -1
else:
break
return state
def rotate(res):
global wheel_info, rotate_target
for i in range(4):
if res[i] == 0:
continue
elif res[i] == 1:
value = wheel_info[i].pop()
wheel_info[i].insert(0, value)
else:
value = wheel_info[i][0]
del wheel_info[i][0]
wheel_info[i].append(value)
wheel_info = []
for i in range(4):
wheel_info.append(list(map(int, sys.stdin.readline().strip())))
n = int(input())
rotate_target = []
for i in range(n):
rotate_target.append(list(map(int, input().split())))
for t, d in rotate_target:
res = find(t-1, d)
rotate(res)
print(wheel_info[0][0] + wheel_info[1][0] * 2 + wheel_info[2][0] * 4 + wheel_info[3][0] * 8)
🔑