結果

問題 No.240 ナイト散歩
ユーザー shinwisteriashinwisteria
提出日時 2017-04-01 16:38:23
言語 Java21
(openjdk 21)
結果
AC  
実行時間 132 ms / 2,000 ms
コード長 1,372 bytes
コンパイル時間 3,964 ms
コンパイル使用メモリ 79,240 KB
実行使用メモリ 54,380 KB
最終ジャッジ日時 2024-10-07 21:37:15
合計ジャッジ時間 8,952 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 125 ms
53,956 KB
testcase_01 AC 128 ms
54,080 KB
testcase_02 AC 127 ms
54,060 KB
testcase_03 AC 121 ms
53,800 KB
testcase_04 AC 122 ms
54,176 KB
testcase_05 AC 114 ms
53,428 KB
testcase_06 AC 125 ms
54,072 KB
testcase_07 AC 122 ms
54,080 KB
testcase_08 AC 114 ms
52,892 KB
testcase_09 AC 126 ms
53,836 KB
testcase_10 AC 120 ms
53,948 KB
testcase_11 AC 112 ms
52,800 KB
testcase_12 AC 119 ms
54,380 KB
testcase_13 AC 123 ms
53,956 KB
testcase_14 AC 123 ms
54,288 KB
testcase_15 AC 119 ms
53,948 KB
testcase_16 AC 123 ms
54,068 KB
testcase_17 AC 123 ms
53,824 KB
testcase_18 AC 117 ms
53,008 KB
testcase_19 AC 121 ms
53,960 KB
testcase_20 AC 115 ms
52,788 KB
testcase_21 AC 129 ms
54,188 KB
testcase_22 AC 119 ms
54,000 KB
testcase_23 AC 132 ms
53,860 KB
testcase_24 AC 126 ms
54,372 KB
testcase_25 AC 111 ms
52,640 KB
testcase_26 AC 122 ms
53,900 KB
testcase_27 AC 125 ms
54,092 KB
testcase_28 AC 109 ms
52,896 KB
testcase_29 AC 122 ms
54,116 KB
testcase_30 AC 127 ms
54,084 KB
testcase_31 AC 125 ms
53,968 KB
testcase_32 AC 122 ms
54,040 KB
testcase_33 AC 124 ms
54,092 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.ArrayDeque;
import java.util.ArrayList;
import java.util.Scanner;
public class Knightwalk {

	public static void main(String[] args) {
		// TODO 自動生成されたメソッド・スタブ
		Scanner s = new Scanner(System.in);
		int X = s.nextInt(),Y = s.nextInt();
		ArrayList<Integer> x = new ArrayList<>();
		ArrayList<Integer> y = new ArrayList<>();
		x.add(0);
		y.add(0);
		ArrayDeque<Integer> z = new ArrayDeque<>();
		ArrayDeque<Integer> keep = new ArrayDeque<>();
		z.offer(0); 
		z.offer(0);
		int[] roota = new int[]{1,1,2,2,-1,-1,-2,-2};
		int[] rootb = new int[]{2,-2,1,-1,2,-2,1,-1};
		
		s.close();
		for(int i = 1;i <= 3;i++){
			while(!z.isEmpty()){
				int nowx = z.poll();
				int nowy = z.poll();
				for(int j = 0;j < 8;j++){
					//System.out.println(roota[j] + "  " + rootb[j]);
					x.add(nowx+roota[j]);
					keep.offer(nowx+roota[j]);
					y.add(nowy + rootb[j]);
					keep.offer(nowy + rootb[j]);
				}
			}
			z.addAll(keep);
			keep.clear();
		}
		//System.out.println(x);
		//System.out.println(y);
		if(X > 6 || Y > 6 || X < -6 || Y < -6){
			System.out.println("NO");
		}else{
			while(x.contains(X)){
				int p = x.indexOf(X);
				if(y.get(p) == Y){
					System.out.println("YES");
					break;
				}else{
					x.remove(p);
					y.remove(p);
				}
			}
			if(!x.contains(X)){
				System.out.println("NO");
			}
		}

	}

}
0