結果

問題 No.240 ナイト散歩
ユーザー htensaihtensai
提出日時 2019-12-17 16:15:04
言語 Java21
(openjdk 21)
結果
AC  
実行時間 56 ms / 2,000 ms
コード長 1,689 bytes
コンパイル時間 2,581 ms
コンパイル使用メモリ 79,720 KB
実行使用メモリ 37,100 KB
最終ジャッジ日時 2024-07-02 21:29:39
合計ジャッジ時間 5,689 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
37,048 KB
testcase_01 AC 55 ms
36,664 KB
testcase_02 AC 55 ms
36,884 KB
testcase_03 AC 55 ms
36,696 KB
testcase_04 AC 54 ms
36,948 KB
testcase_05 AC 54 ms
36,596 KB
testcase_06 AC 53 ms
36,812 KB
testcase_07 AC 54 ms
37,100 KB
testcase_08 AC 55 ms
36,844 KB
testcase_09 AC 54 ms
36,888 KB
testcase_10 AC 55 ms
36,516 KB
testcase_11 AC 53 ms
36,520 KB
testcase_12 AC 53 ms
37,008 KB
testcase_13 AC 54 ms
36,728 KB
testcase_14 AC 54 ms
36,520 KB
testcase_15 AC 53 ms
36,596 KB
testcase_16 AC 54 ms
36,732 KB
testcase_17 AC 55 ms
36,856 KB
testcase_18 AC 53 ms
37,008 KB
testcase_19 AC 54 ms
36,812 KB
testcase_20 AC 53 ms
36,540 KB
testcase_21 AC 55 ms
36,940 KB
testcase_22 AC 54 ms
36,796 KB
testcase_23 AC 56 ms
37,060 KB
testcase_24 AC 54 ms
36,656 KB
testcase_25 AC 52 ms
36,900 KB
testcase_26 AC 53 ms
37,000 KB
testcase_27 AC 54 ms
36,532 KB
testcase_28 AC 54 ms
37,004 KB
testcase_29 AC 54 ms
36,816 KB
testcase_30 AC 54 ms
36,864 KB
testcase_31 AC 54 ms
36,876 KB
testcase_32 AC 53 ms
36,540 KB
testcase_33 AC 54 ms
36,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.*;

public class Main {
    public static void main(String[] args) throws Exception {
        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
        String[] first = br.readLine().split(" ", 2);
        int x = Integer.parseInt(first[0]);
        int y = Integer.parseInt(first[1]);
        HashSet<Point> cur = new HashSet<>();
        cur.add(new Point(0, 0));
        for (int i = 0; i < 3; i++) {
            HashSet<Point> next = new HashSet<>();
            for (Point p : cur) {
                next.add(p);
                next.add(new Point(p.x + 1, p.y + 2));
                next.add(new Point(p.x - 1, p.y + 2));
                next.add(new Point(p.x + 1, p.y - 2));
                next.add(new Point(p.x - 1, p.y - 2));
                next.add(new Point(p.x + 2, p.y + 1));
                next.add(new Point(p.x - 2, p.y + 1));
                next.add(new Point(p.x + 2, p.y - 1));
                next.add(new Point(p.x - 2, p.y - 1));
            }
            cur = next;
        }
        if (cur.contains(new Point(x, y))) {
            System.out.println("YES");
        } else {
            System.out.println("NO");
        }
    }
    
    static class Point {
        int x;
        int y;
        
        public Point(int x, int y) {
            this.x = x;
            this.y = y;
        }
        
        public int hashCode() {
            return x + y;
        }
        
        public boolean equals(Object o) {
            Point p = (Point) o;
            return x == p.x && y == p.y;
        }
        
        public String toString() {
            return x + ":" + y;
        }
    }
}
0