結果

問題 No.240 ナイト散歩
ユーザー r.suzukir.suzuki
提出日時 2015-12-30 18:17:53
言語 Java21
(openjdk 21)
結果
AC  
実行時間 132 ms / 2,000 ms
コード長 944 bytes
コンパイル時間 3,258 ms
コンパイル使用メモリ 79,452 KB
実行使用メモリ 54,280 KB
最終ジャッジ日時 2024-10-07 21:18:30
合計ジャッジ時間 8,430 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 123 ms
53,908 KB
testcase_01 AC 120 ms
53,992 KB
testcase_02 AC 121 ms
53,852 KB
testcase_03 AC 113 ms
52,904 KB
testcase_04 AC 119 ms
54,048 KB
testcase_05 AC 122 ms
54,160 KB
testcase_06 AC 117 ms
53,764 KB
testcase_07 AC 107 ms
52,920 KB
testcase_08 AC 123 ms
54,188 KB
testcase_09 AC 122 ms
54,088 KB
testcase_10 AC 121 ms
53,948 KB
testcase_11 AC 122 ms
54,032 KB
testcase_12 AC 107 ms
52,772 KB
testcase_13 AC 120 ms
54,112 KB
testcase_14 AC 120 ms
53,920 KB
testcase_15 AC 113 ms
53,712 KB
testcase_16 AC 117 ms
54,236 KB
testcase_17 AC 123 ms
53,720 KB
testcase_18 AC 131 ms
53,992 KB
testcase_19 AC 112 ms
53,452 KB
testcase_20 AC 107 ms
52,604 KB
testcase_21 AC 117 ms
54,240 KB
testcase_22 AC 105 ms
52,772 KB
testcase_23 AC 132 ms
54,140 KB
testcase_24 AC 118 ms
54,028 KB
testcase_25 AC 121 ms
53,988 KB
testcase_26 AC 122 ms
53,980 KB
testcase_27 AC 120 ms
54,228 KB
testcase_28 AC 119 ms
54,096 KB
testcase_29 AC 109 ms
53,104 KB
testcase_30 AC 120 ms
54,220 KB
testcase_31 AC 122 ms
53,904 KB
testcase_32 AC 118 ms
54,280 KB
testcase_33 AC 118 ms
54,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

enum Step {
	p1(1, 2), p2(2, 1), p3(2, -1), p4(1, -2), p5(-1, -2), p6(-2, -1), p7(-2, 1), p8(-1, 2);
	int x, y;

	Step(int x, int y) {
		this.x = x;
		this.y = y;
	}
}

public class No_240 {
	static int decideX;
	static int decideY;

	public static void main(String[] args) {
		java.util.Scanner sc = new java.util.Scanner(System.in);
		decideX = sc.nextInt();
		decideY = sc.nextInt();
		String ans = "";

		if (Knight(0, 0, 0)) {
			ans = "YES";
		} else {
			ans = "NO";
		}

		System.out.println(ans);
		sc.close();

	}

	static boolean Knight(int x, int y, int c) {

		if (judge(x, y)) {
			return true;
		}
		if (c >= 3) {
			return false;
		}
		for (Step s : Step.values()) {
			int nextX = x + s.x;
			int nextY = y + s.y;
			if (Knight(nextX, nextY, c + 1)) {
				return true;
			}
		}
		return false;
	}

	static boolean judge(int x, int y) {
		if (decideX == x && decideY == y) {
			return true;
		} else {
			return false;
		}
	}

}
0