정답 개수:
0
틀린 개수:
0
실행 실패 개수:
10
1 5 1 E # S # # 0 0 0
런타임 에러 (RTE)
stderr:
Traceback (most recent call last): File "Main.py", line 37, in <module> l, r, c = map(int, input().split()) # l: 층 수, r: 행, c: 열 ^^^^^^^ ValueError: not enough values to unpack (expected 3, got 0)
Trapped!
2 2 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 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 1 minute(s).
3 1 4 #.## #### SE## 2 5 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
Escaped in 1 minute(s). Escaped in 4 minute(s).