結果

問題 No.240 ナイト散歩
ユーザー tsunabittsunabit
提出日時 2020-03-19 16:20:26
言語 Java21
(openjdk 21)
結果
AC  
実行時間 143 ms / 2,000 ms
コード長 628 bytes
コンパイル時間 3,655 ms
コンパイル使用メモリ 77,788 KB
実行使用メモリ 41,908 KB
最終ジャッジ日時 2024-05-08 03:17:46
合計ジャッジ時間 9,786 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 140 ms
41,340 KB
testcase_01 AC 138 ms
41,272 KB
testcase_02 AC 137 ms
41,348 KB
testcase_03 AC 143 ms
41,484 KB
testcase_04 AC 140 ms
41,180 KB
testcase_05 AC 141 ms
41,520 KB
testcase_06 AC 140 ms
41,760 KB
testcase_07 AC 139 ms
41,288 KB
testcase_08 AC 138 ms
41,476 KB
testcase_09 AC 139 ms
41,464 KB
testcase_10 AC 140 ms
41,280 KB
testcase_11 AC 140 ms
41,620 KB
testcase_12 AC 139 ms
41,544 KB
testcase_13 AC 139 ms
41,360 KB
testcase_14 AC 137 ms
41,500 KB
testcase_15 AC 141 ms
41,604 KB
testcase_16 AC 136 ms
41,628 KB
testcase_17 AC 139 ms
41,908 KB
testcase_18 AC 138 ms
41,440 KB
testcase_19 AC 140 ms
41,292 KB
testcase_20 AC 140 ms
41,452 KB
testcase_21 AC 136 ms
41,460 KB
testcase_22 AC 137 ms
41,424 KB
testcase_23 AC 141 ms
41,500 KB
testcase_24 AC 138 ms
41,532 KB
testcase_25 AC 139 ms
41,156 KB
testcase_26 AC 136 ms
41,236 KB
testcase_27 AC 138 ms
41,360 KB
testcase_28 AC 141 ms
41,536 KB
testcase_29 AC 136 ms
41,424 KB
testcase_30 AC 140 ms
41,384 KB
testcase_31 AC 139 ms
41,232 KB
testcase_32 AC 140 ms
41,584 KB
testcase_33 AC 136 ms
41,204 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class No240 {
	public static String ans = "NO";
	public static int X;
	public static int Y;
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		X = sc.nextInt();
		Y = sc.nextInt();
		bfs(0, 0, 0);
		System.out.println(ans);
	}
	public static void bfs(int x, int y, int c) {
		if(c > 3) return;
		if(x == X && y == Y) {
			ans = "YES";
			return;
		}
		bfs(x-2, y-1 ,c+1);
		bfs(x-2, y+1 ,c+1);
		bfs(x-1, y-2 ,c+1);
		bfs(x-1, y+2 ,c+1);
		bfs(x+1, y-2 ,c+1);
		bfs(x+1, y+2 ,c+1);
		bfs(x+2, y-1 ,c+1);
		bfs(x+2, y+1 ,c+1);
	}
}
0