結果

問題 No.240 ナイト散歩
ユーザー hhgfhn1hhgfhn1
提出日時 2018-10-21 12:31:32
言語 Java21
(openjdk 21)
結果
AC  
実行時間 137 ms / 2,000 ms
コード長 611 bytes
コンパイル時間 2,189 ms
コンパイル使用メモリ 75,000 KB
実行使用メモリ 41,528 KB
最終ジャッジ日時 2024-11-19 03:19:34
合計ジャッジ時間 8,171 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
41,292 KB
testcase_01 AC 137 ms
41,264 KB
testcase_02 AC 137 ms
41,140 KB
testcase_03 AC 133 ms
41,148 KB
testcase_04 AC 136 ms
41,464 KB
testcase_05 AC 137 ms
41,284 KB
testcase_06 AC 135 ms
41,312 KB
testcase_07 AC 131 ms
41,472 KB
testcase_08 AC 133 ms
41,248 KB
testcase_09 AC 122 ms
39,868 KB
testcase_10 AC 136 ms
41,128 KB
testcase_11 AC 133 ms
41,224 KB
testcase_12 AC 120 ms
40,260 KB
testcase_13 AC 132 ms
41,036 KB
testcase_14 AC 136 ms
41,340 KB
testcase_15 AC 137 ms
41,000 KB
testcase_16 AC 135 ms
41,352 KB
testcase_17 AC 135 ms
41,384 KB
testcase_18 AC 133 ms
41,352 KB
testcase_19 AC 134 ms
41,280 KB
testcase_20 AC 130 ms
41,468 KB
testcase_21 AC 135 ms
41,304 KB
testcase_22 AC 136 ms
41,528 KB
testcase_23 AC 134 ms
41,272 KB
testcase_24 AC 132 ms
41,128 KB
testcase_25 AC 133 ms
41,396 KB
testcase_26 AC 133 ms
41,256 KB
testcase_27 AC 134 ms
41,408 KB
testcase_28 AC 136 ms
40,904 KB
testcase_29 AC 131 ms
41,228 KB
testcase_30 AC 136 ms
41,180 KB
testcase_31 AC 137 ms
41,148 KB
testcase_32 AC 137 ms
41,464 KB
testcase_33 AC 135 ms
41,408 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {

	@SuppressWarnings("resource")
	public static void main(String args[]) {
		Scanner scanner = new Scanner(System.in);
		int x=scanner.nextInt();
		int y=scanner.nextInt();
		int xs[]={-2,-2,-1,-1,1,1,2,2};
		int ys[]={-1,1,-2,2,-2,2,-1,1};
		dfs(0,0,0,x,y,xs,ys);
		System.out.println(bo?"YES":"NO");
	}

	static boolean bo=false;
	private static void dfs(int i, int x, int y,int gx,int gy, int[] xs, int[] ys) {
		if(x==gx&&y==gy){
			bo=true;
			return;
		}
		if(i==3){
			return;
		}
		
		for(int j=0;j<8;j++){
			dfs(i+1,x+xs[j],y+ys[j],gx,gy,xs,ys);
		}
	}
}
0