結果

問題 No.240 ナイト散歩
ユーザー darknightdarknight
提出日時 2016-11-23 01:46:57
言語 Java21
(openjdk 21)
結果
AC  
実行時間 129 ms / 2,000 ms
コード長 1,170 bytes
コンパイル時間 4,276 ms
コンパイル使用メモリ 79,492 KB
実行使用メモリ 54,544 KB
最終ジャッジ日時 2024-10-07 21:32:41
合計ジャッジ時間 7,416 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 111 ms
52,736 KB
testcase_01 AC 125 ms
54,224 KB
testcase_02 AC 125 ms
54,040 KB
testcase_03 AC 124 ms
53,880 KB
testcase_04 AC 123 ms
54,212 KB
testcase_05 AC 126 ms
54,044 KB
testcase_06 AC 127 ms
54,084 KB
testcase_07 AC 127 ms
53,984 KB
testcase_08 AC 122 ms
54,340 KB
testcase_09 AC 124 ms
54,256 KB
testcase_10 AC 111 ms
54,544 KB
testcase_11 AC 122 ms
54,124 KB
testcase_12 AC 123 ms
54,212 KB
testcase_13 AC 126 ms
53,720 KB
testcase_14 AC 125 ms
54,032 KB
testcase_15 AC 126 ms
54,268 KB
testcase_16 AC 122 ms
53,740 KB
testcase_17 AC 127 ms
53,748 KB
testcase_18 AC 126 ms
54,200 KB
testcase_19 AC 110 ms
52,972 KB
testcase_20 AC 126 ms
53,928 KB
testcase_21 AC 124 ms
54,192 KB
testcase_22 AC 126 ms
54,240 KB
testcase_23 AC 108 ms
52,696 KB
testcase_24 AC 127 ms
53,856 KB
testcase_25 AC 127 ms
54,312 KB
testcase_26 AC 125 ms
53,836 KB
testcase_27 AC 126 ms
53,964 KB
testcase_28 AC 126 ms
53,856 KB
testcase_29 AC 127 ms
54,220 KB
testcase_30 AC 128 ms
54,052 KB
testcase_31 AC 126 ms
53,740 KB
testcase_32 AC 129 ms
53,980 KB
testcase_33 AC 125 ms
54,276 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
 
public class Main {
    
    //探索終了の条件
    static int X ;
    static int Y ;
    //探索する木
    static int a[] = {1,2,2,1,-1,-2,-2,-1};
    static int b[] = {2,1,-1,-2,-2,-1,1,2};
    
    	public static void main(String[] args) {
    	    Scanner sc  = new Scanner(System.in);
            X = Integer.parseInt(sc.next());
            Y = Integer.parseInt(sc.next());
        
            boolean ans = f(0,0,0);
        
            if(ans) System.out.print("YES");
            if(!ans)System.out.print("NO");
                System.out.println();
            }
            
        // p,q : 探索開始地点; depth : 探索回数
        static  boolean f (int p,int q,int depth){
            //System.out.println("p:"+p+" q:"+q);
            //目的の値に達する    
            if(p==X&&q==Y) return true;
            //s探索終了の条件
            if(depth==3)       return false;
            for(int i=0;i<8;i++)
            {
            //目的の値に達する
            if(f(p+a[i],q+b[i],depth+1)) return true;
            }
            //探索失敗
             return false;
        }
   
}
0