정답 개수:
2
틀린 개수:
4
실행 실패 개수:
24
1 2 00
-1
2
2 2 01 00
-1
3
2 3 011 010
-1
4
2 1 0 0
런타임 에러 (RTE)
stderr:
Traceback (most recent call last): File "Main.py", line 28, in <module> if graph[nx][ny] == 0 and visited[zp][nx][nx] == -1: ~~~~~~~~~~~~~~~^^^^ IndexError: list index out of range
2
3 1 0 1 0
런타임 에러 (RTE)
stderr:
Traceback (most recent call last): File "Main.py", line 30, in <module> visited[nx][ny][zp] = visited[zp][nx][nx] + 1 ~~~~~~~~~~~~~~~^^^^ IndexError: list assignment index out of range
3
2 3 000 000
런타임 에러 (RTE)
stderr:
Traceback (most recent call last): File "Main.py", line 30, in <module> visited[nx][ny][zp] = visited[zp][nx][nx] + 1 ~~~~~~~~~~~^^^^ IndexError: list index out of range
4