結果

問題 No.240 ナイト散歩
ユーザー t8m8⛄️t8m8⛄️
提出日時 2015-08-14 21:27:46
言語 Java21
(openjdk 21)
結果
AC  
実行時間 144 ms / 2,000 ms
コード長 962 bytes
コンパイル時間 4,085 ms
コンパイル使用メモリ 80,576 KB
実行使用メモリ 54,504 KB
最終ジャッジ日時 2024-10-07 21:04:28
合計ジャッジ時間 10,083 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 137 ms
53,856 KB
testcase_01 AC 137 ms
53,992 KB
testcase_02 AC 140 ms
54,504 KB
testcase_03 AC 140 ms
53,848 KB
testcase_04 AC 142 ms
54,284 KB
testcase_05 AC 144 ms
54,140 KB
testcase_06 AC 140 ms
54,328 KB
testcase_07 AC 140 ms
54,060 KB
testcase_08 AC 142 ms
53,924 KB
testcase_09 AC 141 ms
54,204 KB
testcase_10 AC 140 ms
54,280 KB
testcase_11 AC 138 ms
54,240 KB
testcase_12 AC 137 ms
53,708 KB
testcase_13 AC 138 ms
54,068 KB
testcase_14 AC 138 ms
54,096 KB
testcase_15 AC 142 ms
54,108 KB
testcase_16 AC 142 ms
53,896 KB
testcase_17 AC 138 ms
54,188 KB
testcase_18 AC 138 ms
53,928 KB
testcase_19 AC 136 ms
53,968 KB
testcase_20 AC 138 ms
54,124 KB
testcase_21 AC 136 ms
54,328 KB
testcase_22 AC 135 ms
54,256 KB
testcase_23 AC 137 ms
54,204 KB
testcase_24 AC 135 ms
54,156 KB
testcase_25 AC 136 ms
54,160 KB
testcase_26 AC 133 ms
54,020 KB
testcase_27 AC 137 ms
54,196 KB
testcase_28 AC 136 ms
54,268 KB
testcase_29 AC 136 ms
54,116 KB
testcase_30 AC 136 ms
54,036 KB
testcase_31 AC 138 ms
53,808 KB
testcase_32 AC 142 ms
54,132 KB
testcase_33 AC 136 ms
54,084 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,1};

	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