ArrayIndexOutOfBoundsException 에러를 주의해서 코드를 작성해야 한다. public class Main { static int N, K; static int[] point = new int[100001]; public static void main(String[] args) throws IOException { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); StringTokenizer st = new StringTokenizer(br.readLine()); N = Integer.parseInt(st.nextToken()); // 수빈이가 있는 위치 K = Integer.parseInt(st.nex..