結果

問題 No.240 ナイト散歩
ユーザー ぴろずぴろず
提出日時 2015-07-10 22:29:25
言語 Java21
(openjdk 21)
結果
AC  
実行時間 129 ms / 2,000 ms
コード長 688 bytes
コンパイル時間 2,389 ms
コンパイル使用メモリ 78,764 KB
実行使用メモリ 54,252 KB
最終ジャッジ日時 2024-10-07 20:47:15
合計ジャッジ時間 7,249 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 119 ms
54,128 KB
testcase_01 AC 124 ms
54,164 KB
testcase_02 AC 128 ms
53,964 KB
testcase_03 AC 117 ms
54,040 KB
testcase_04 AC 129 ms
54,028 KB
testcase_05 AC 128 ms
54,036 KB
testcase_06 AC 127 ms
53,992 KB
testcase_07 AC 126 ms
53,996 KB
testcase_08 AC 129 ms
54,028 KB
testcase_09 AC 110 ms
53,044 KB
testcase_10 AC 120 ms
54,064 KB
testcase_11 AC 121 ms
53,940 KB
testcase_12 AC 111 ms
53,148 KB
testcase_13 AC 127 ms
54,068 KB
testcase_14 AC 122 ms
53,760 KB
testcase_15 AC 125 ms
54,044 KB
testcase_16 AC 120 ms
54,092 KB
testcase_17 AC 110 ms
53,052 KB
testcase_18 AC 123 ms
53,976 KB
testcase_19 AC 129 ms
54,176 KB
testcase_20 AC 123 ms
54,092 KB
testcase_21 AC 127 ms
53,820 KB
testcase_22 AC 115 ms
53,036 KB
testcase_23 AC 107 ms
52,664 KB
testcase_24 AC 111 ms
54,236 KB
testcase_25 AC 114 ms
53,004 KB
testcase_26 AC 120 ms
54,220 KB
testcase_27 AC 121 ms
54,012 KB
testcase_28 AC 117 ms
54,252 KB
testcase_29 AC 119 ms
54,044 KB
testcase_30 AC 121 ms
53,764 KB
testcase_31 AC 105 ms
52,540 KB
testcase_32 AC 103 ms
52,552 KB
testcase_33 AC 108 ms
53,088 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package no240;

import java.awt.Point;
import java.util.HashSet;
import java.util.Scanner;

public class Main {

	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) {
		HashSet<Point> hs = new HashSet<>();
		hs.add(new Point(0,0));
		for(int i=0;i<3;i++) {
			HashSet<Point> hsn = new HashSet<>();
			for(Point p: hs) {
				for(int k=0;k<dx.length;k++) {
					hsn.add(new Point(p.x + dx[k], p.y + dy[k]));
				}
			}
			hs.addAll(hsn);
		}
		Scanner sc = new Scanner(System.in);
		if (hs.contains(new Point(sc.nextInt(),sc.nextInt()))) {
			System.out.println("YES");
		}else{
			System.out.println("NO");
		}
	}

}
0