結果

問題 No.240 ナイト散歩
ユーザー jp_stejp_ste
提出日時 2016-03-01 16:30:40
言語 Java21
(openjdk 21)
結果
AC  
実行時間 127 ms / 2,000 ms
コード長 1,325 bytes
コンパイル時間 2,098 ms
コンパイル使用メモリ 77,828 KB
実行使用メモリ 54,292 KB
最終ジャッジ日時 2024-10-07 21:21:51
合計ジャッジ時間 7,234 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 109 ms
53,028 KB
testcase_01 AC 127 ms
54,044 KB
testcase_02 AC 109 ms
52,944 KB
testcase_03 AC 124 ms
54,232 KB
testcase_04 AC 108 ms
52,692 KB
testcase_05 AC 127 ms
53,824 KB
testcase_06 AC 114 ms
53,836 KB
testcase_07 AC 117 ms
53,792 KB
testcase_08 AC 117 ms
52,800 KB
testcase_09 AC 123 ms
54,000 KB
testcase_10 AC 114 ms
53,852 KB
testcase_11 AC 111 ms
52,944 KB
testcase_12 AC 125 ms
54,112 KB
testcase_13 AC 122 ms
54,184 KB
testcase_14 AC 105 ms
52,956 KB
testcase_15 AC 105 ms
52,800 KB
testcase_16 AC 118 ms
54,264 KB
testcase_17 AC 118 ms
54,048 KB
testcase_18 AC 108 ms
52,652 KB
testcase_19 AC 109 ms
52,776 KB
testcase_20 AC 123 ms
53,920 KB
testcase_21 AC 126 ms
54,024 KB
testcase_22 AC 102 ms
52,508 KB
testcase_23 AC 120 ms
54,228 KB
testcase_24 AC 121 ms
54,292 KB
testcase_25 AC 113 ms
52,720 KB
testcase_26 AC 121 ms
53,876 KB
testcase_27 AC 123 ms
54,040 KB
testcase_28 AC 122 ms
54,180 KB
testcase_29 AC 117 ms
53,880 KB
testcase_30 AC 113 ms
53,848 KB
testcase_31 AC 119 ms
53,720 KB
testcase_32 AC 111 ms
52,936 KB
testcase_33 AC 125 ms
53,988 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
    
    static int X, 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) {
        try (Scanner scan = new Scanner(System.in)) {
            X = scan.nextInt();
            Y = scan.nextInt();
            
            if(solve()) {
                System.out.println("YES");
            } else {
                System.out.println("NO");
            }
        }
    }
    
    static boolean solve() {
        int x = 0, y = 0;
        if(x == X && y == Y) return true;
  
        for(int i=0; i<dx.length; i++) {
            x += dx[i];
            y += dy[i];
            if(x == X && y == Y) return true;
            for(int j=0; j<dx.length; j++) {
                x += dx[j];
                y += dy[j];
                if(x == X && y == Y) return true;
                for(int k=0; k<dx.length; k++) {
                    x += dx[k];
                    y += dy[k];
                    if(x == X && y == Y) return true;
                    x -= dx[k];
                    y -= dy[k];
                }
                x -= dx[j];
                y -= dy[j];
            }
            x -= dx[i];
            y -= dy[i];
        }
        return false;
    }
}
0