結果

問題 No.240 ナイト散歩
ユーザー 37zigen37zigen
提出日時 2016-05-01 16:03:01
言語 Java21
(openjdk 21)
結果
AC  
実行時間 128 ms / 2,000 ms
コード長 998 bytes
コンパイル時間 2,111 ms
コンパイル使用メモリ 77,900 KB
実行使用メモリ 54,556 KB
最終ジャッジ日時 2024-10-07 21:24:39
合計ジャッジ時間 7,154 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 122 ms
54,020 KB
testcase_01 AC 128 ms
54,556 KB
testcase_02 AC 126 ms
54,088 KB
testcase_03 AC 113 ms
53,000 KB
testcase_04 AC 125 ms
54,060 KB
testcase_05 AC 120 ms
54,236 KB
testcase_06 AC 120 ms
53,824 KB
testcase_07 AC 122 ms
54,112 KB
testcase_08 AC 118 ms
53,956 KB
testcase_09 AC 124 ms
53,984 KB
testcase_10 AC 123 ms
54,072 KB
testcase_11 AC 122 ms
54,192 KB
testcase_12 AC 127 ms
54,124 KB
testcase_13 AC 118 ms
54,144 KB
testcase_14 AC 122 ms
53,832 KB
testcase_15 AC 107 ms
52,628 KB
testcase_16 AC 118 ms
54,076 KB
testcase_17 AC 111 ms
52,920 KB
testcase_18 AC 110 ms
53,012 KB
testcase_19 AC 120 ms
53,780 KB
testcase_20 AC 109 ms
52,600 KB
testcase_21 AC 113 ms
53,604 KB
testcase_22 AC 118 ms
53,944 KB
testcase_23 AC 110 ms
53,512 KB
testcase_24 AC 121 ms
54,180 KB
testcase_25 AC 120 ms
54,068 KB
testcase_26 AC 122 ms
53,684 KB
testcase_27 AC 119 ms
54,552 KB
testcase_28 AC 116 ms
54,148 KB
testcase_29 AC 107 ms
53,000 KB
testcase_30 AC 116 ms
53,920 KB
testcase_31 AC 116 ms
54,020 KB
testcase_32 AC 105 ms
52,848 KB
testcase_33 AC 115 ms
52,732 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder;
import java.util.ArrayDeque;
import java.util.Queue;
import java.util.Scanner;
public class Main{
	int[] dx={2,2,-2,-2,1,-1,1,-1};
	int[] dy={1,-1,1,-1,2,2,-2,-2};
	public static void main(String[] args)throws Exception{
		new Main().solve();
	}
	void solve(){
		Scanner sc=new Scanner(System.in);
		int x=sc.nextInt()+500;
		int y=sc.nextInt()+500;
		Queue<Coordinate> q=new ArrayDeque<Coordinate>();
		boolean[][] arrived=new boolean[1000][1000];
		
		q.add(new Coordinate(500,500,0));
		arrived[500][500]=true;
		while(!q.isEmpty()){
			Coordinate c=q.poll();
			if(c.x==x&&c.y==y){
				System.out.println("YES");
				return;
			}
			if(c.n==3)continue;
			for(int i=0;i<8;i++){
				int nx=c.x+dx[i];
				int ny=c.y+dy[i];
				if(arrived[ny][nx])continue;
				arrived[ny][nx]=true;
				q.add(new Coordinate(nx, ny,c.n+1));
			}
		}
		System.out.println("NO");
	}
	class Coordinate{
		int x,y,n;
		public Coordinate(int x,int y,int n) {
			this.x=x;this.y=y;this.n=n;
		}
	}
}
0