안녕하세요 jumpgame 문제를 풀고 있습니다.
이클립스에서 잘 돌아가고 worst case를 만들어보아도 일단 정상적으로 출력되었습니다. 그런데 서버로 정답을 제출하니 RTE 에러(nonzero return code)가 발생하였습니다.
어떤 문제인지 한번 검토해주실 수 있나요???
감사합니다. 좋은하루 되세요~
public class Main {
static int Matrix[][];
static int ret=0;
static int cache[][];
static int Jump(int row, int col)
{
if(row>=Matrix.length || col>=Matrix.length)
return 0;
if(row==(Matrix.length-1) && col==(Matrix.length-1))
{
cache[row][col] = 1;
return 1;
}
//return 1;
juhyun16
안녕하세요 jumpgame 문제를 풀고 있습니다.
이클립스에서 잘 돌아가고 worst case를 만들어보아도 일단 정상적으로 출력되었습니다. 그런데 서버로 정답을 제출하니 RTE 에러(nonzero return code)가 발생하였습니다.
어떤 문제인지 한번 검토해주실 수 있나요???
감사합니다. 좋은하루 되세요~
import java.util.Scanner;
import java.io.FileReader;
import java.io.BufferedReader;
import java.io.IOException;
public class Main {
static int Matrix[][];
static int ret=0;
static int cache[][];
static int Jump(int row, int col)
{
if(row>=Matrix.length || col>=Matrix.length)
return 0;
if(row==(Matrix.length-1) && col==(Matrix.length-1))
{
cache[row][col] = 1;
return 1;
}
//return 1;
}
8년 전