結果

問題 No.240 ナイト散歩
ユーザー kohaku_kohakukohaku_kohaku
提出日時 2016-12-02 21:00:48
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,110 bytes
コンパイル時間 2,255 ms
コンパイル使用メモリ 77,332 KB
実行使用メモリ 54,520 KB
最終ジャッジ日時 2024-05-05 17:50:23
合計ジャッジ時間 6,767 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 100 ms
40,260 KB
testcase_01 AC 101 ms
40,612 KB
testcase_02 WA -
testcase_03 AC 116 ms
41,148 KB
testcase_04 AC 110 ms
41,352 KB
testcase_05 WA -
testcase_06 AC 110 ms
41,116 KB
testcase_07 AC 108 ms
41,040 KB
testcase_08 AC 101 ms
39,768 KB
testcase_09 AC 115 ms
41,532 KB
testcase_10 AC 113 ms
41,284 KB
testcase_11 AC 112 ms
40,472 KB
testcase_12 AC 123 ms
41,024 KB
testcase_13 AC 115 ms
41,180 KB
testcase_14 AC 120 ms
41,332 KB
testcase_15 AC 102 ms
39,992 KB
testcase_16 AC 119 ms
41,188 KB
testcase_17 AC 114 ms
41,116 KB
testcase_18 AC 114 ms
40,800 KB
testcase_19 AC 111 ms
41,180 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 115 ms
40,876 KB
testcase_23 AC 99 ms
39,992 KB
testcase_24 AC 102 ms
40,136 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 109 ms
40,928 KB
testcase_29 AC 101 ms
39,788 KB
testcase_30 AC 106 ms
40,144 KB
testcase_31 AC 111 ms
41,336 KB
testcase_32 AC 113 ms
41,072 KB
testcase_33 AC 115 ms
41,048 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<3; k++){
            if(b[k][x+6][y+6]){
                System.out.println("YES");
                return;
            }
        }
        System.out.println("NO");
    }
}
0