結果

問題 No.240 ナイト散歩
ユーザー atkrymatkrym
提出日時 2016-10-23 17:39:02
言語 Java21
(openjdk 21)
結果
AC  
実行時間 130 ms / 2,000 ms
コード長 929 bytes
コンパイル時間 2,020 ms
コンパイル使用メモリ 77,608 KB
実行使用メモリ 41,684 KB
最終ジャッジ日時 2024-10-07 21:30:53
合計ジャッジ時間 7,305 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 122 ms
41,400 KB
testcase_01 AC 115 ms
41,192 KB
testcase_02 AC 121 ms
40,996 KB
testcase_03 AC 118 ms
41,668 KB
testcase_04 AC 108 ms
41,320 KB
testcase_05 AC 119 ms
41,184 KB
testcase_06 AC 110 ms
41,432 KB
testcase_07 AC 120 ms
41,176 KB
testcase_08 AC 122 ms
41,172 KB
testcase_09 AC 108 ms
41,260 KB
testcase_10 AC 120 ms
41,060 KB
testcase_11 AC 120 ms
41,640 KB
testcase_12 AC 121 ms
41,096 KB
testcase_13 AC 120 ms
41,192 KB
testcase_14 AC 108 ms
41,624 KB
testcase_15 AC 123 ms
41,032 KB
testcase_16 AC 110 ms
41,660 KB
testcase_17 AC 122 ms
41,624 KB
testcase_18 AC 128 ms
41,664 KB
testcase_19 AC 128 ms
41,136 KB
testcase_20 AC 129 ms
41,164 KB
testcase_21 AC 130 ms
41,132 KB
testcase_22 AC 122 ms
41,508 KB
testcase_23 AC 125 ms
41,176 KB
testcase_24 AC 130 ms
41,032 KB
testcase_25 AC 125 ms
41,188 KB
testcase_26 AC 123 ms
41,064 KB
testcase_27 AC 122 ms
41,384 KB
testcase_28 AC 121 ms
41,300 KB
testcase_29 AC 120 ms
41,224 KB
testcase_30 AC 107 ms
41,124 KB
testcase_31 AC 118 ms
41,684 KB
testcase_32 AC 119 ms
41,536 KB
testcase_33 AC 128 ms
41,124 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.math.*;
import java.text.*;

public class Main {
    private static Scanner sc = new Scanner(System.in);
    private static int gx;
    private static int gy;
    public static void main(String[] args) throws Exception {
        gx = sc.nextInt();
        gy = sc.nextInt();
        
        if (move(0, 0, 0)) {
            System.out.println("YES");
        } else {
            System.out.println("NO");
        }
    }
    
    public static boolean move(int x, int y, int c) {
        if (c > 3) return false;
        if (x == gx && y == gy) return true;
        
        int[] dx = {1, 2, 2, 1, -1, -2, -2, -1};
        int[] dy = {2, 1, -1, -2, -2, -1, 1, 2};
        
        for (int i = 0;i < 8;i++) {
            int nx = x + dx[i];
            int ny = y + dy[i];

            if (move(nx, ny, c+1)) {
                return true;
            }
        }
        return false;
    }
}
0