# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
313654 | analyticalprogrammer | Jump (BOI06_jump) | Cpython 3 | 49 ms | 3496 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
a = int(input())
matrix= []
for i in range(a):
temp = [int(x) for x in input().split()]
matrix.append(temp)
path = []
for i in range(a):
temp = []
for j in range(a):
temp.append(0)
path.append(temp)
for i in range(a):
for j in range(a):
if(i+matrix[i][j] <= a-1):
path[i][j]+=1
if(i-matrix[i][j] <= a-1):
path[i][j]+=1
if(j+matrix[i][j] <= a-1):
path[i][j]+=1
if(j-matrix[i][j] <= a-1):
path[i][j]+=1
print(path[a-1][a-1]-1)
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |