結果

問題 No.240 ナイト散歩
ユーザー shinwisteriashinwisteria
提出日時 2017-04-01 14:13:03
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 551 bytes
コンパイル時間 3,514 ms
コンパイル使用メモリ 75,240 KB
実行使用メモリ 54,412 KB
最終ジャッジ日時 2024-07-07 18:51:48
合計ジャッジ時間 7,638 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 110 ms
40,020 KB
testcase_01 AC 111 ms
41,436 KB
testcase_02 WA -
testcase_03 AC 99 ms
40,240 KB
testcase_04 AC 108 ms
41,108 KB
testcase_05 AC 109 ms
41,000 KB
testcase_06 AC 109 ms
41,064 KB
testcase_07 AC 108 ms
40,948 KB
testcase_08 AC 95 ms
39,836 KB
testcase_09 AC 100 ms
40,168 KB
testcase_10 AC 102 ms
40,088 KB
testcase_11 AC 99 ms
39,984 KB
testcase_12 AC 110 ms
40,940 KB
testcase_13 AC 113 ms
41,228 KB
testcase_14 AC 112 ms
40,808 KB
testcase_15 AC 101 ms
40,044 KB
testcase_16 AC 112 ms
41,116 KB
testcase_17 AC 106 ms
40,168 KB
testcase_18 AC 100 ms
40,248 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 112 ms
41,208 KB
testcase_29 AC 110 ms
41,400 KB
testcase_30 AC 98 ms
40,012 KB
testcase_31 AC 109 ms
41,068 KB
testcase_32 AC 99 ms
40,116 KB
testcase_33 AC 108 ms
40,884 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
public class Knightwalk {

	public static void main(String[] args) {
		// TODO 自動生成されたメソッド・スタブ
		Scanner s = new Scanner(System.in);
		int X = Math.abs(s.nextInt()),Y = Math.abs(s.nextInt());
		s.close();
		if(X > 6 || Y > 6){
			System.out.println("NO");
		}else{
			int A = Math.max(X, Y);
			int count = 0;
			while(A >= 2){
				count++;
				A -= 2;
			}
			if(Math.min(X, Y) == count + (A % 2) * 2){
				System.out.println("YES");
			}else{
				System.out.println("NO");
			}
			
		}

	}

}
0