정답 개수:
0
틀린 개수:
0
실행 실패 개수:
10
2 1 3 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 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
Trapped!
1 4 3 ### 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 16, in bfs return 'Escaped in x minute(' + visited[zp][xp][yp] + ').' ~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~ TypeError: can only concatenate str (not "int") to str
Escaped in 2 minute(s).
3 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 16, in bfs return 'Escaped in x minute(' + visited[zp][xp][yp] + ').' ~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~ TypeError: can only concatenate str (not "int") to str
Trapped!