結果

問題 No.240 ナイト散歩
ユーザー kohaku_kohakukohaku_kohaku
提出日時 2016-12-02 21:01:53
言語 Java21
(openjdk 21)
結果
AC  
実行時間 126 ms / 2,000 ms
コード長 1,110 bytes
コンパイル時間 2,052 ms
コンパイル使用メモリ 77,208 KB
実行使用メモリ 56,092 KB
最終ジャッジ日時 2024-10-07 21:32:54
合計ジャッジ時間 7,248 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 105 ms
52,732 KB
testcase_01 AC 111 ms
53,152 KB
testcase_02 AC 116 ms
53,944 KB
testcase_03 AC 104 ms
53,032 KB
testcase_04 AC 116 ms
54,060 KB
testcase_05 AC 121 ms
56,092 KB
testcase_06 AC 120 ms
53,916 KB
testcase_07 AC 122 ms
53,820 KB
testcase_08 AC 124 ms
54,124 KB
testcase_09 AC 125 ms
54,188 KB
testcase_10 AC 119 ms
53,924 KB
testcase_11 AC 123 ms
53,960 KB
testcase_12 AC 105 ms
52,848 KB
testcase_13 AC 110 ms
52,892 KB
testcase_14 AC 119 ms
53,868 KB
testcase_15 AC 113 ms
52,692 KB
testcase_16 AC 120 ms
54,228 KB
testcase_17 AC 111 ms
52,768 KB
testcase_18 AC 125 ms
53,928 KB
testcase_19 AC 126 ms
53,920 KB
testcase_20 AC 119 ms
54,304 KB
testcase_21 AC 108 ms
52,888 KB
testcase_22 AC 107 ms
53,032 KB
testcase_23 AC 121 ms
53,844 KB
testcase_24 AC 115 ms
52,904 KB
testcase_25 AC 122 ms
53,912 KB
testcase_26 AC 125 ms
54,312 KB
testcase_27 AC 114 ms
54,084 KB
testcase_28 AC 119 ms
54,044 KB
testcase_29 AC 119 ms
54,104 KB
testcase_30 AC 118 ms
53,784 KB
testcase_31 AC 118 ms
53,968 KB
testcase_32 AC 117 ms
54,508 KB
testcase_33 AC 102 ms
54,320 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int x = sc.nextInt();
        int y = sc.nextInt();
        if(Math.max(x,y)>6 || Math.min(x,y)<-6){
            System.out.println("NO");
            return;
        }
        boolean [][][] b = new boolean[4][13][13];
        b[0][6][6]=true;
        for(int k=0; k<3; k++){
        for(int i=2; i<11; i++){
            for(int j=2; j<11; j++){
                if(b[k][i][j]){
                    b[k+1][i+2][j+1]=true;
                    b[k+1][i+2][j-1]=true;
                    b[k+1][i+1][j+2]=true;
                    b[k+1][i+1][j-2]=true;
                    b[k+1][i-1][j+2]=true;
                    b[k+1][i-1][j-2]=true;
                    b[k+1][i-2][j+1]=true;
                    b[k+1][i-2][j-1]=true;
                }
            }
        }
        }
        for(int k=0; k<4; k++){
            if(b[k][x+6][y+6]){
                System.out.println("YES");
                return;
            }
        }
        System.out.println("NO");
    }
}
0