結果

問題 No.240 ナイト散歩
ユーザー rf141rf141
提出日時 2015-07-27 22:32:04
言語 Java21
(openjdk 21)
結果
AC  
実行時間 127 ms / 2,000 ms
コード長 785 bytes
コンパイル時間 3,546 ms
コンパイル使用メモリ 78,156 KB
実行使用メモリ 54,344 KB
最終ジャッジ日時 2024-10-07 21:01:31
合計ジャッジ時間 7,928 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 107 ms
52,744 KB
testcase_01 AC 127 ms
53,912 KB
testcase_02 AC 110 ms
54,200 KB
testcase_03 AC 111 ms
54,280 KB
testcase_04 AC 117 ms
54,176 KB
testcase_05 AC 122 ms
54,100 KB
testcase_06 AC 114 ms
53,680 KB
testcase_07 AC 117 ms
54,020 KB
testcase_08 AC 120 ms
54,156 KB
testcase_09 AC 118 ms
53,860 KB
testcase_10 AC 118 ms
53,832 KB
testcase_11 AC 120 ms
53,792 KB
testcase_12 AC 117 ms
54,084 KB
testcase_13 AC 127 ms
54,344 KB
testcase_14 AC 104 ms
52,880 KB
testcase_15 AC 104 ms
52,908 KB
testcase_16 AC 114 ms
53,832 KB
testcase_17 AC 117 ms
54,076 KB
testcase_18 AC 117 ms
53,972 KB
testcase_19 AC 115 ms
54,056 KB
testcase_20 AC 119 ms
53,788 KB
testcase_21 AC 118 ms
54,136 KB
testcase_22 AC 108 ms
53,016 KB
testcase_23 AC 118 ms
53,896 KB
testcase_24 AC 106 ms
52,620 KB
testcase_25 AC 119 ms
53,952 KB
testcase_26 AC 102 ms
52,768 KB
testcase_27 AC 116 ms
54,044 KB
testcase_28 AC 110 ms
53,068 KB
testcase_29 AC 120 ms
53,916 KB
testcase_30 AC 111 ms
53,692 KB
testcase_31 AC 119 ms
53,776 KB
testcase_32 AC 124 ms
53,988 KB
testcase_33 AC 120 ms
54,084 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
public class walkChess{

	static int x;
	static int y;
	static final int[] canMove_x = {-2,-2,-1,-1,1,1,2,2};
	static final int[] canMove_y = {-1,1,-2,2,-2,2,-1,1};


	public static void main(String... args){
		int base_x = 0,base_y = 0;
		Scanner s = new Scanner(System.in);
		x = s.nextInt();
		y = s.nextInt();
		if(judge(0,0,0)){
			System.out.println("YES");
		}else{
			System.out.println("NO");
		}
	}

	public static boolean judge(int px,int py,int cw){
		int count = cw;
		if(px == x && py == y){
			return true;
		}else if(cw == 3){
			return false;
		}else{
			for(int i = 0; i < 8; i++){
				int after_x = px+canMove_x[i];
				int after_y = py+canMove_y[i];
				if(judge(after_x,after_y,count+1)){
					return true;
				}
			}
			return false;
		}

	}
}
0