結果

問題 No.240 ナイト散歩
ユーザー kohaku_kohakukohaku_kohaku
提出日時 2016-12-12 01:48:13
言語 Java21
(openjdk 21)
結果
AC  
実行時間 129 ms / 2,000 ms
コード長 666 bytes
コンパイル時間 2,063 ms
コンパイル使用メモリ 74,396 KB
実行使用メモリ 54,356 KB
最終ジャッジ日時 2024-10-07 21:33:28
合計ジャッジ時間 7,496 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 117 ms
52,944 KB
testcase_01 AC 121 ms
54,104 KB
testcase_02 AC 120 ms
54,096 KB
testcase_03 AC 120 ms
54,120 KB
testcase_04 AC 109 ms
52,576 KB
testcase_05 AC 123 ms
54,120 KB
testcase_06 AC 115 ms
52,712 KB
testcase_07 AC 123 ms
53,976 KB
testcase_08 AC 123 ms
53,920 KB
testcase_09 AC 120 ms
53,836 KB
testcase_10 AC 114 ms
53,052 KB
testcase_11 AC 122 ms
53,816 KB
testcase_12 AC 123 ms
53,808 KB
testcase_13 AC 122 ms
54,332 KB
testcase_14 AC 122 ms
54,304 KB
testcase_15 AC 115 ms
54,356 KB
testcase_16 AC 128 ms
54,048 KB
testcase_17 AC 124 ms
54,176 KB
testcase_18 AC 123 ms
54,128 KB
testcase_19 AC 115 ms
52,968 KB
testcase_20 AC 112 ms
52,964 KB
testcase_21 AC 121 ms
53,960 KB
testcase_22 AC 120 ms
53,908 KB
testcase_23 AC 126 ms
54,096 KB
testcase_24 AC 129 ms
53,844 KB
testcase_25 AC 127 ms
54,096 KB
testcase_26 AC 125 ms
54,336 KB
testcase_27 AC 121 ms
53,924 KB
testcase_28 AC 122 ms
54,136 KB
testcase_29 AC 108 ms
52,712 KB
testcase_30 AC 119 ms
54,108 KB
testcase_31 AC 121 ms
54,024 KB
testcase_32 AC 122 ms
53,832 KB
testcase_33 AC 121 ms
54,044 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

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