結果

問題 No.240 ナイト散歩
ユーザー uafr_csuafr_cs
提出日時 2015-07-31 19:56:21
言語 Java21
(openjdk 21)
結果
AC  
実行時間 129 ms / 2,000 ms
コード長 843 bytes
コンパイル時間 2,101 ms
コンパイル使用メモリ 77,796 KB
実行使用メモリ 54,292 KB
最終ジャッジ日時 2024-10-07 21:01:51
合計ジャッジ時間 6,984 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 123 ms
53,948 KB
testcase_01 AC 117 ms
54,132 KB
testcase_02 AC 106 ms
53,024 KB
testcase_03 AC 107 ms
52,964 KB
testcase_04 AC 111 ms
52,916 KB
testcase_05 AC 126 ms
54,088 KB
testcase_06 AC 112 ms
52,776 KB
testcase_07 AC 125 ms
54,044 KB
testcase_08 AC 108 ms
52,608 KB
testcase_09 AC 122 ms
54,260 KB
testcase_10 AC 101 ms
52,904 KB
testcase_11 AC 105 ms
52,672 KB
testcase_12 AC 110 ms
53,032 KB
testcase_13 AC 115 ms
54,164 KB
testcase_14 AC 108 ms
53,016 KB
testcase_15 AC 121 ms
53,912 KB
testcase_16 AC 120 ms
53,872 KB
testcase_17 AC 120 ms
53,916 KB
testcase_18 AC 120 ms
54,016 KB
testcase_19 AC 118 ms
52,596 KB
testcase_20 AC 118 ms
53,024 KB
testcase_21 AC 117 ms
53,892 KB
testcase_22 AC 104 ms
52,968 KB
testcase_23 AC 107 ms
52,956 KB
testcase_24 AC 125 ms
54,052 KB
testcase_25 AC 125 ms
53,960 KB
testcase_26 AC 122 ms
54,180 KB
testcase_27 AC 124 ms
54,192 KB
testcase_28 AC 124 ms
53,868 KB
testcase_29 AC 129 ms
54,124 KB
testcase_30 AC 125 ms
54,292 KB
testcase_31 AC 125 ms
53,864 KB
testcase_32 AC 118 ms
53,860 KB
testcase_33 AC 107 ms
53,032 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.HashSet;
import java.util.LinkedList;
import java.util.Scanner;
import java.util.Set;

public class Main {
	
	public static final int[] vs = {1, 2, 2, 1, -1, -2, -2, -1};
	
	public static boolean dfs(final int X, final int Y, int rest, int k_x, int k_y){
		if(X == k_x && Y == k_y){
			return true;
		}else if(rest <= 0){
			return false;
		}
		
		for(int index = 0; index < vs.length; index++){
			final int dx = vs[index];
			final int dy = vs[(index + vs.length / 4) % vs.length];
			
			if(dfs(X, Y, rest - 1, k_x + dx, k_y + dy)){
				return true;
			}
		}
		
		return false;
	}
	
	public static void main(String[] args){
		Scanner sc = new Scanner(System.in);
		
		final int X = sc.nextInt();
		final int Y = sc.nextInt();
		
		System.out.println(dfs(X, Y, 3, 0, 0) ? "YES" : "NO");
		
		
	}
	
}
0