Testcase AC (Beta)

제출 #44680

제출 정보

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

제출 결과

정답 개수:

23

틀린 개수:

41

실행 실패 개수:

36

제출 코드

찾은 반례

입력:

1
6 5 3
4 4
2 4
4 2

오답 출력:

2

정답 출력:

3

입력:

1
3 4 4
2 2
0 2
2 0
0 0

오답 출력:

2

정답 출력:

4

입력:

1
5 5 6
4 4
4 0
0 4
0 0
4 2
2 2

오답 출력:

3

정답 출력:

6

입력:

1
4 2 1
1 0

오답 출력:

런타임 에러 (RTE)
stderr:
Traceback (most recent call last): File "Main.py", line 21, in <module> if land[i][j] == 1 and visited[i][j] == False: IndexError: list index out of range

정답 출력:

1

입력:

1
7 3 1
2 0

오답 출력:

런타임 에러 (RTE)
stderr:
Traceback (most recent call last): File "Main.py", line 21, in <module> if land[i][j] == 1 and visited[i][j] == False: IndexError: list index out of range

정답 출력:

1

입력:

1
9 3 2
6 1
4 2

오답 출력:

런타임 에러 (RTE)
stderr:
Traceback (most recent call last): File "Main.py", line 21, in <module> if land[i][j] == 1 and visited[i][j] == False: IndexError: list index out of range

정답 출력:

2