結果

問題 No.240 ナイト散歩
ユーザー kou6839kou6839
提出日時 2015-07-16 19:33:38
言語 Java21
(openjdk 21)
結果
AC  
実行時間 131 ms / 2,000 ms
コード長 838 bytes
コンパイル時間 2,295 ms
コンパイル使用メモリ 77,948 KB
実行使用メモリ 54,376 KB
最終ジャッジ日時 2024-10-07 20:58:15
合計ジャッジ時間 7,363 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
54,160 KB
testcase_01 AC 123 ms
54,132 KB
testcase_02 AC 122 ms
54,256 KB
testcase_03 AC 112 ms
53,080 KB
testcase_04 AC 121 ms
54,088 KB
testcase_05 AC 124 ms
54,184 KB
testcase_06 AC 121 ms
54,092 KB
testcase_07 AC 118 ms
54,236 KB
testcase_08 AC 107 ms
52,900 KB
testcase_09 AC 113 ms
53,516 KB
testcase_10 AC 121 ms
53,996 KB
testcase_11 AC 122 ms
54,132 KB
testcase_12 AC 123 ms
54,252 KB
testcase_13 AC 122 ms
54,228 KB
testcase_14 AC 120 ms
54,112 KB
testcase_15 AC 124 ms
53,932 KB
testcase_16 AC 121 ms
54,100 KB
testcase_17 AC 121 ms
54,116 KB
testcase_18 AC 123 ms
53,956 KB
testcase_19 AC 124 ms
54,036 KB
testcase_20 AC 124 ms
54,184 KB
testcase_21 AC 130 ms
54,280 KB
testcase_22 AC 131 ms
54,256 KB
testcase_23 AC 110 ms
52,928 KB
testcase_24 AC 123 ms
54,104 KB
testcase_25 AC 122 ms
54,332 KB
testcase_26 AC 121 ms
54,376 KB
testcase_27 AC 122 ms
53,972 KB
testcase_28 AC 121 ms
54,052 KB
testcase_29 AC 123 ms
53,860 KB
testcase_30 AC 122 ms
54,320 KB
testcase_31 AC 126 ms
54,128 KB
testcase_32 AC 128 ms
54,156 KB
testcase_33 AC 128 ms
53,908 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int[] dx = {-2,-2,-1,-1,1,1,2,2};
		int[] dy = {-1,1,-2,2,-2,2,-1,1};
		Queue<Integer> xque = new LinkedList<>();
		Queue<Integer> yque = new LinkedList<>();
		int X = sc.nextInt();
		int Y = sc.nextInt();
		if(X==0 && Y == 0){
			System.out.println("YES");
			return;
		}
		xque.add(0);
		yque.add(0);
		for(int i=0;i<3;i++){
			int len = xque.size();
			for(int j=0;j<len;j++){
				int nowx = xque.poll();
				int nowy = yque.poll();
				for(int k=0;k<dx.length;k++){
					int nextx = nowx + dx[k];
					int nexty = nowy + dy[k];
					if(X == nextx && Y == nexty){
						System.out.println("YES");
						return;
					}
					xque.add(nextx);
					yque.add(nexty);
				}
			}
		}
		System.out.println("NO");
	}
}
0