結果

問題 No.240 ナイト散歩
ユーザー SagTokiSagToki
提出日時 2018-06-05 17:02:48
言語 Java21
(openjdk 21)
結果
AC  
実行時間 134 ms / 2,000 ms
コード長 1,600 bytes
コンパイル時間 3,584 ms
コンパイル使用メモリ 80,004 KB
実行使用メモリ 54,700 KB
最終ジャッジ日時 2024-06-30 09:56:07
合計ジャッジ時間 9,266 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
54,108 KB
testcase_01 AC 130 ms
54,700 KB
testcase_02 AC 130 ms
54,096 KB
testcase_03 AC 130 ms
54,144 KB
testcase_04 AC 114 ms
52,972 KB
testcase_05 AC 128 ms
53,988 KB
testcase_06 AC 129 ms
54,192 KB
testcase_07 AC 129 ms
54,104 KB
testcase_08 AC 128 ms
54,368 KB
testcase_09 AC 131 ms
53,984 KB
testcase_10 AC 133 ms
54,240 KB
testcase_11 AC 129 ms
53,920 KB
testcase_12 AC 133 ms
54,088 KB
testcase_13 AC 129 ms
54,008 KB
testcase_14 AC 132 ms
53,992 KB
testcase_15 AC 131 ms
54,184 KB
testcase_16 AC 131 ms
54,092 KB
testcase_17 AC 130 ms
54,192 KB
testcase_18 AC 130 ms
54,180 KB
testcase_19 AC 130 ms
54,456 KB
testcase_20 AC 130 ms
54,152 KB
testcase_21 AC 129 ms
53,976 KB
testcase_22 AC 122 ms
52,724 KB
testcase_23 AC 129 ms
54,344 KB
testcase_24 AC 125 ms
52,984 KB
testcase_25 AC 127 ms
54,008 KB
testcase_26 AC 129 ms
53,984 KB
testcase_27 AC 127 ms
53,988 KB
testcase_28 AC 128 ms
54,188 KB
testcase_29 AC 126 ms
54,216 KB
testcase_30 AC 134 ms
52,944 KB
testcase_31 AC 132 ms
54,052 KB
testcase_32 AC 128 ms
54,240 KB
testcase_33 AC 129 ms
54,220 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
import java.util.InputMismatchException;

public class KnightWalk {
    static Scanner scanner = new Scanner(System.in);
    
    public static void main(String[] args){
        int X = Input(-1000000000 , 1000000000);
        int Y = Input(-1000000000 , 1000000000);
        scanner.close();
        boolean Answer = Judge(X , Y , 0 , 0 , 0);
        if(Answer){
            System.out.println("YES");
        }else{
            System.out.println("NO");
        }
    }
    
    public static int Input(int Min , int Max){
        int Number = scanner.nextInt();
        try{
            if(Number < Min || Number > Max){
            System.out.println(Min + "以上" + Max + "以下で入力してください");
            System.exit(0);
        }
        }catch(InputMismatchException e){
            System.out.println("数字を入力してください");
            System.exit(0);
        }catch(Exception E){
            System.out.println("想定外のエラーです");
            System.exit(0);
        }
        return Number;
    }
    
    public static boolean Judge(int X , int Y , int NowX , int NowY , int Count){
        int[] Xwidth = {1,2,2,1,-1,-2,-2,-1};
        int[] Ywidth = {2,1,-1,-2,-2,-1,1,2};
        if(NowX == X && NowY == Y){
            return true;
        }
        if(Count == 3){
            return false;
        }
        for(int i = 0 ; i < Xwidth.length ; i++){
            if(Judge(X , Y , NowX + Xwidth[i] , NowY + Ywidth[i] , Count + 1)){
                return true;
            }
        }
        return false;
    }
}
0