7562번: 나이트의 이동 체스판 위에 한 나이트가 놓여져 있다. 나이트가 한 번에 이동할 수 있는 칸은 아래 그림에 나와있다. 나이트가 이동하려고 하는 칸이 주어진다. 나이트는 몇 번 움직이면 이 칸으로 이동할 수 www.acmicpc.net import java.io.BufferedReader; import java.io.InputStreamReader; import java.util.*; public class Main { static class XY{ int x; int y; public XY(int x, int y){ this.x = x; this.y = y; } } static int[] dx = {-2, -2, -1, 1, 2, 2, 1, -1}; static int[] dy = {-1, 1..