정답 개수:
0
틀린 개수:
0
실행 실패 개수:
10
4 2 1 S . . . . # E . 0 0 0
런타임 에러 (RTE)
stderr:
Traceback (most recent call last): File "Main.py", line 49, in <module> print(solution(graph, l, r, c, visited)) ~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^ File "Main.py", line 33, in solution return bfs(graph, i, j, k, visited, l, r, c) File "Main.py", line 21, in bfs if visited[nz][nx][ny] == -1 and graph[nz][nx][ny] != '#': ~~~~~~~~~~~~~^^^^ IndexError: list index out of range
Escaped in 3 minute(s).
4 2 4 #### #### #### #### E### #### #### ###S 0 0 0
런타임 에러 (RTE)
stderr:
Traceback (most recent call last): File "Main.py", line 49, in <module> print(solution(graph, l, r, c, visited)) ~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^ File "Main.py", line 32, in solution if graph[i][j][k] == 'S': ~~~~~~~~~~~^^^ IndexError: list index out of range
Trapped!
5 5 1 # # # # # # E # # # # . . . . # # . # . # # . # S 0 0 0
런타임 에러 (RTE)
stderr:
Traceback (most recent call last): File "Main.py", line 49, in <module> print(solution(graph, l, r, c, visited)) ~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^ File "Main.py", line 32, in solution if graph[i][j][k] == 'S': ~~~~~~~~~~~^^^ IndexError: list index out of range
Escaped in 6 minute(s).