[백준] / [Python] / [14503] 로봇 청소기
·
Coding Test/백준
https://www.acmicpc.net/problem/14503 14503번: 로봇 청소기 첫째 줄에 방의 크기 과 이 입력된다. 둘째 줄에 처음에 로봇 청소기가 있는 칸의 좌표 와 처음에 로봇 청소기가 바라보는 방향 가 입력된다. 가 인 경우 북쪽 www.acmicpc.net 반례는 https://www.acmicpc.net/board/view/67476 이 글을 참고하면 된다. import sys input = sys.stdin.readline n, m = map(int, input().split()) r, c, d = map(int, input().split()) maps = [list(map(int, input()..