Testcase AC (Beta)

제출 #47756

제출 정보

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

제출 결과

정답 개수:

2

틀린 개수:

3

실행 실패 개수:

25

제출 코드

찾은 반례

입력:

1 1
0

오답 출력:

-1

정답 출력:

1

입력:

2 1
0
0

오답 출력:

-1

정답 출력:

2

입력:

6 1
0
0
0
0
0
0

오답 출력:

-1

정답 출력:

6

입력:

2 2
00
00

오답 출력:

런타임 에러 (RTE)
stderr:
Traceback (most recent call last): File "Main.py", line 30, in <module> if 0 <= ni < N and 0 <= nj < M and dp[ni][nj] == 0 and graph[ni][nj] == 0: IndexError: list index out of range

정답 출력:

3

입력:

2 2
01
10

오답 출력:

런타임 에러 (RTE)
stderr:
Traceback (most recent call last): File "Main.py", line 30, in <module> if 0 <= ni < N and 0 <= nj < M and dp[ni][nj] == 0 and graph[ni][nj] == 0: IndexError: list index out of range

정답 출력:

3

입력:

2 3
001
000

오답 출력:

런타임 에러 (RTE)
stderr:
Traceback (most recent call last): File "Main.py", line 30, in <module> if 0 <= ni < N and 0 <= nj < M and dp[ni][nj] == 0 and graph[ni][nj] == 0: IndexError: list index out of range

정답 출력:

4