結果

問題 No.240 ナイト散歩
ユーザー t8m8⛄️t8m8⛄️
提出日時 2015-08-14 21:26:13
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 962 bytes
コンパイル時間 3,566 ms
コンパイル使用メモリ 79,820 KB
実行使用メモリ 56,112 KB
最終ジャッジ日時 2024-07-18 09:29:53
合計ジャッジ時間 7,901 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 103 ms
52,736 KB
testcase_01 AC 111 ms
53,868 KB
testcase_02 AC 101 ms
52,908 KB
testcase_03 AC 99 ms
52,456 KB
testcase_04 AC 115 ms
53,736 KB
testcase_05 AC 116 ms
53,736 KB
testcase_06 AC 102 ms
52,548 KB
testcase_07 AC 101 ms
54,156 KB
testcase_08 AC 103 ms
52,536 KB
testcase_09 AC 110 ms
52,984 KB
testcase_10 AC 120 ms
53,620 KB
testcase_11 AC 118 ms
53,708 KB
testcase_12 AC 116 ms
54,004 KB
testcase_13 AC 120 ms
54,052 KB
testcase_14 AC 120 ms
54,048 KB
testcase_15 AC 120 ms
53,692 KB
testcase_16 AC 108 ms
53,580 KB
testcase_17 AC 108 ms
53,684 KB
testcase_18 AC 102 ms
52,808 KB
testcase_19 AC 116 ms
53,820 KB
testcase_20 AC 110 ms
53,704 KB
testcase_21 AC 120 ms
53,988 KB
testcase_22 AC 120 ms
54,052 KB
testcase_23 AC 119 ms
53,840 KB
testcase_24 AC 118 ms
53,908 KB
testcase_25 AC 118 ms
53,548 KB
testcase_26 AC 113 ms
53,060 KB
testcase_27 AC 113 ms
53,760 KB
testcase_28 AC 116 ms
54,032 KB
testcase_29 AC 120 ms
53,896 KB
testcase_30 AC 115 ms
53,808 KB
testcase_31 AC 105 ms
53,148 KB
testcase_32 WA -
testcase_33 AC 112 ms
54,228 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.*;
import java.awt.geom.*;
import java.math.*;

public class No0240 {

	static final Scanner in = new Scanner(System.in);
	static final PrintWriter out = new PrintWriter(System.out,false);

	static void solve() {
		X = in.nextInt();
		Y = in.nextInt();
		out.println(rec(0,0,0) ? "YES" : "NO");
	}

	static int X,Y;

	static int[] dx = {-2,-2,-1,-1,1,1,2,2};
	static int[] dy = {-1,1,-2,2,-2,2,-1,2};

	static boolean rec(int x, int y, int depth) {
		if (x == X && y == Y) return true;
		if (depth == 3) return false;
		for (int i=0; i<8; i++) {
			if (rec(x+dx[i],y+dy[i],depth+1)) {
				return true;
			}
		}
		return false;
	}

	public static void main(String[] args) {
		long start = System.currentTimeMillis();

		solve();
		out.flush();

		long end = System.currentTimeMillis();
		//trace(end-start + "ms");
		in.close();
		out.close();
	}

	static void trace(Object... o) { System.out.println(Arrays.deepToString(o));}
}
0