Testcase AC (Beta)

제출 #46514

제출 정보

언어:Python 3
상태:완료
실행 시간:19908 ms

제출 결과

정답 개수:

10

틀린 개수:

3

실행 실패 개수:

87

제출 코드

찾은 반례

입력:

2 2
01
00

오답 출력:

0 1 0
3

정답 출력:

3

입력:

2 2
01
10

오답 출력:

0 1 0
1 0 0
3

정답 출력:

3

입력:

1 2
00

오답 출력:

런타임 에러 (RTE)
stderr:
Traceback (most recent call last): File "Main.py", line 28, in <module> result = bfs(n,m) File "Main.py", line 13, in bfs if route[nx][ny] == 0 and visited[nx][ny][breakWall] == False: IndexError: list index out of range

정답 출력:

2

입력:

1 3
000

오답 출력:

런타임 에러 (RTE)
stderr:
Traceback (most recent call last): File "Main.py", line 28, in <module> result = bfs(n,m) File "Main.py", line 13, in bfs if route[nx][ny] == 0 and visited[nx][ny][breakWall] == False: IndexError: list index out of range

정답 출력:

3

입력:

1 4
0000

오답 출력:

런타임 에러 (RTE)
stderr:
Traceback (most recent call last): File "Main.py", line 28, in <module> result = bfs(n,m) File "Main.py", line 13, in bfs if route[nx][ny] == 0 and visited[nx][ny][breakWall] == False: IndexError: list index out of range

정답 출력:

4