結果

問題 No.240 ナイト散歩
ユーザー fjafjafjafjafjafja
提出日時 2017-09-19 20:05:00
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,170 bytes
コンパイル時間 4,225 ms
コンパイル使用メモリ 79,632 KB
実行使用メモリ 41,740 KB
最終ジャッジ日時 2024-11-08 05:44:14
合計ジャッジ時間 9,858 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 138 ms
41,416 KB
testcase_01 AC 141 ms
41,320 KB
testcase_02 AC 141 ms
41,112 KB
testcase_03 AC 140 ms
41,376 KB
testcase_04 AC 135 ms
41,132 KB
testcase_05 WA -
testcase_06 AC 147 ms
41,488 KB
testcase_07 AC 138 ms
41,496 KB
testcase_08 AC 122 ms
40,500 KB
testcase_09 AC 142 ms
41,292 KB
testcase_10 AC 145 ms
41,080 KB
testcase_11 AC 147 ms
41,492 KB
testcase_12 AC 144 ms
41,360 KB
testcase_13 AC 147 ms
41,148 KB
testcase_14 AC 142 ms
41,236 KB
testcase_15 AC 143 ms
41,088 KB
testcase_16 AC 123 ms
40,108 KB
testcase_17 AC 135 ms
41,240 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 134 ms
41,132 KB
testcase_23 AC 137 ms
41,356 KB
testcase_24 AC 137 ms
41,152 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 138 ms
41,340 KB
testcase_29 AC 135 ms
41,384 KB
testcase_30 AC 137 ms
41,512 KB
testcase_31 AC 142 ms
41,460 KB
testcase_32 AC 138 ms
41,356 KB
testcase_33 AC 134 ms
41,312 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder;

import java.util.Scanner;

public class N240
{
	static int x,y,nowx=0,nowy=0,end=0;
	public static void main(String[] args)
	{
		Scanner sc = new Scanner(System.in);
		x=sc.nextInt();y=sc.nextInt();
		check();
		for(int i=0;end==0&&i<=7;i++)
		{	nowx=0;nowy=0;
			move(i);
			check();
			//System.out.print("["+nowx+","+nowy+"]"+" ");
			for(int j=0;end==0&&j<=7;j++)
			{
				move(j);
				check();
				//System.out.print("["+nowx+","+nowy+"]"+" ");
				for(int k=0;end==0&&k<=7;k++)
				{
					move(k);
					check();
					//System.out.println("["+i+","+j+","+k+"]");
					//System.out.println();
				}
			}
		}
		if(end==1){System.out.println("YES");}
		else{System.out.println("NO");}
	}

	static void check()
	{
		if(x==nowx&&y==nowy){end=1;return;}
		else {return ;}
	}


	static void move(int i)
	{
		switch(i)
		{
		case 0:
			nowx+=2;nowy+=1;
			break;
		case 1:
			nowx+=2;nowy-=1;
			break;
		case 2:
			nowx-=2;nowy+=1;
			break;
		case 3:
			nowx-=2;nowy-=1;
			break;
		case 4:
			nowx+=1;nowy+=2;
			break;
		case 5:
			nowx+=1;nowy-=2;
			break;
		case 6:
			nowx-=1;nowy+=2;
			break;
		case 7:
			nowx-=1;nowy-=2;
			break;
		}
	}

}
0