結果

問題 No.240 ナイト散歩
ユーザー spaciaspacia
提出日時 2016-01-04 20:56:11
言語 Java21
(openjdk 21)
結果
AC  
実行時間 71 ms / 2,000 ms
コード長 799 bytes
コンパイル時間 1,955 ms
コンパイル使用メモリ 77,768 KB
実行使用メモリ 51,616 KB
最終ジャッジ日時 2024-10-07 21:18:46
合計ジャッジ時間 4,943 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
50,288 KB
testcase_01 AC 48 ms
50,016 KB
testcase_02 AC 67 ms
51,256 KB
testcase_03 AC 48 ms
49,996 KB
testcase_04 AC 64 ms
51,588 KB
testcase_05 AC 64 ms
51,276 KB
testcase_06 AC 49 ms
50,052 KB
testcase_07 AC 64 ms
51,616 KB
testcase_08 AC 50 ms
50,124 KB
testcase_09 AC 50 ms
50,012 KB
testcase_10 AC 50 ms
50,252 KB
testcase_11 AC 50 ms
50,208 KB
testcase_12 AC 51 ms
50,056 KB
testcase_13 AC 52 ms
49,980 KB
testcase_14 AC 51 ms
50,036 KB
testcase_15 AC 51 ms
50,196 KB
testcase_16 AC 50 ms
50,244 KB
testcase_17 AC 52 ms
49,920 KB
testcase_18 AC 71 ms
51,564 KB
testcase_19 AC 70 ms
51,536 KB
testcase_20 AC 70 ms
51,468 KB
testcase_21 AC 68 ms
51,560 KB
testcase_22 AC 67 ms
51,228 KB
testcase_23 AC 68 ms
51,076 KB
testcase_24 AC 65 ms
51,520 KB
testcase_25 AC 64 ms
51,240 KB
testcase_26 AC 64 ms
51,360 KB
testcase_27 AC 64 ms
51,296 KB
testcase_28 AC 47 ms
49,980 KB
testcase_29 AC 48 ms
49,864 KB
testcase_30 AC 48 ms
49,996 KB
testcase_31 AC 48 ms
50,000 KB
testcase_32 AC 47 ms
49,988 KB
testcase_33 AC 48 ms
50,216 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

class Main {
	
	static int goalX , goalY;
	static int[] dx = {-2,-2,-1,-1,1,1,2,2};
	static int[] dy = {-1,1,-2,2,-2,2,-1,1};
	
	public static void out (Object o) {
		System.out.println(o);
	}
	
	public static void solve (int x , int y , int n) {
		if (x == goalX && y == goalY) {
			out("YES");
			System.exit(0);
		}
		if (n == 3) return;
		
		for (int i = 0; i < dx.length; i++) {
			solve(x + dx[i] , y + dy[i] , n + 1);
		}
	}
	
	public static void main (String[] args) throws IOException {
		BufferedReader br = 
			new BufferedReader(new InputStreamReader(System.in));
		
		String[] line = br.readLine().split(" ");
		goalX = Integer.parseInt(line[0]);
		goalY = Integer.parseInt(line[1]);
		
		solve(0 , 0 , 0);
		
		out("NO");
	}
}
0