DRAWRECT RTE (nonzero return code) 문의

  • lopiter
    lopiter

    안녕하세요,

    어제 처음으로 가입해서 처음 문제를 풀어보고 있는데요..

    계속 RTE 오류가 나는데,

    혹시 원인을 확인 할 수 있을까요?

    감사합니다.

    import java.util.*;
    import java.lang.*;
    import java.io.*;

    /* Name of the class has to be "Main" only if the class is public. */
    class Ideone
    {
    public static void main (String[] args) throws java.lang.Exception
    {
    BufferedReader buffer=new BufferedReader(new InputStreamReader(System.in));
    String position[];
    int x[] = new int[3];
    int y[] = new int[3];
    int tryCount = Integer.parseInt(buffer.readLine().trim());
    for(int i = 0 ; i < tryCount ; i++){
    for(int z = 0 ; z < 3 ; z++)
    {
    position = buffer.readLine().split(" ");
    x[z] = Integer.parseInt(position[0]);
    y[z] = Integer.parseInt(position[1]);
    }

    if(x[0] == x[1]) System.out.print(x[2]);
            else if(x[1] == x[2]) System.out.print(x[0]);
            else System.out.print(x[1]);
    
            System.out.print(" ");
    
            if(y[0] == y[1]) System.out.print(y[2]);
            else if(y[1] == y[2]) System.out.print(y[0]);
            else System.out.print(y[1]);
    
            if( i != tryCount - 1) System.out.println("");
    
        }
    }

    }


    9년 전
2개의 댓글이 있습니다.
  • Being
    Being

    알고스팟 온라인 저지/첫 번째 문제 풀기를 참조하세요.


    9년 전 link
  • lopiter
    lopiter

    앗! 감사합니다.^^
    class명이 Main이여야 하네요..죄송합니다.


    9년 전 link
  • 정회원 권한이 있어야 커멘트를 다실 수 있습니다. 정회원이 되시려면 온라인 저지에서 5문제 이상을 푸시고, 가입 후 7일 이상이 지나셔야 합니다. 현재 문제를 푸셨습니다.