Notice
Recent Posts
Recent Comments
Link
목록14503 (1)
clohi 님의 블로그
[BOJ / Python] 14503 : 로봇 청소기
https://www.acmicpc.net/problem/14503 문제코드 - 직접 구현 def isblank(r, c, arr): # 빈칸 있으면 true, 없으면 false if(arr[r][c-1] == 0 or arr[r][c+1] == 0 or arr[r-1][c] == 0 or arr[r+1][c] == 0): return True else: return False def turn(d): if(d == 0): return 3 else: return d-1import sysinput = sys.stdin.readlinen, m = map(int, input().split())r, c, d = map(int, input..
Algorithm/BOJ
2025. 4. 3. 17:19
