結果

問題 No.240 ナイト散歩
ユーザー GrenacheGrenache
提出日時 2015-07-10 22:39:40
言語 Java21
(openjdk 21)
結果
AC  
実行時間 130 ms / 2,000 ms
コード長 860 bytes
コンパイル時間 3,180 ms
コンパイル使用メモリ 77,716 KB
実行使用メモリ 54,580 KB
最終ジャッジ日時 2024-10-07 20:50:32
合計ジャッジ時間 8,228 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
53,980 KB
testcase_01 AC 123 ms
54,028 KB
testcase_02 AC 124 ms
54,244 KB
testcase_03 AC 123 ms
53,952 KB
testcase_04 AC 123 ms
54,096 KB
testcase_05 AC 126 ms
53,952 KB
testcase_06 AC 122 ms
54,012 KB
testcase_07 AC 124 ms
54,204 KB
testcase_08 AC 124 ms
54,480 KB
testcase_09 AC 130 ms
53,960 KB
testcase_10 AC 122 ms
54,108 KB
testcase_11 AC 123 ms
53,864 KB
testcase_12 AC 119 ms
53,720 KB
testcase_13 AC 123 ms
53,980 KB
testcase_14 AC 108 ms
52,640 KB
testcase_15 AC 121 ms
53,828 KB
testcase_16 AC 118 ms
53,916 KB
testcase_17 AC 122 ms
54,580 KB
testcase_18 AC 122 ms
53,756 KB
testcase_19 AC 118 ms
54,024 KB
testcase_20 AC 120 ms
53,884 KB
testcase_21 AC 104 ms
52,900 KB
testcase_22 AC 119 ms
54,156 KB
testcase_23 AC 107 ms
52,952 KB
testcase_24 AC 130 ms
54,100 KB
testcase_25 AC 115 ms
52,920 KB
testcase_26 AC 122 ms
53,800 KB
testcase_27 AC 105 ms
52,900 KB
testcase_28 AC 120 ms
54,176 KB
testcase_29 AC 121 ms
54,064 KB
testcase_30 AC 121 ms
54,044 KB
testcase_31 AC 122 ms
53,748 KB
testcase_32 AC 120 ms
54,172 KB
testcase_33 AC 121 ms
54,024 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;


public class Main_yukicoder240 {

    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);

        x = sc.nextInt();
        y = sc.nextInt();

        if (dfs(0, 0, 0)) {
        	System.out.println("YES");
        } else {
        	System.out.println("NO");
        }
        
        sc.close();
    }

    private static int x;
    private static int y;
    private static int[] dx = {1, 1, 2, 2, -1, -1, -2, -2};
    private static int[] dy = {2, -2, 1, -1, 2, -2, 1, -1};
    
	private static boolean dfs(int xx, int yy, int i) {
		if (xx == x && yy == y) {
			return true;
		}

		if (i == 3) {
			return false;
		}
		
		for (int j = 0; j < dx.length; j++) {
			int tmpx = xx + dx[j];
			int tmpy = yy + dy[j];
			if (dfs(tmpx, tmpy, i + 1)) {
				return true;
			}
		}

		return false;
	}
}
0