結果

問題 No.683 Two Operations No.3
ユーザー matsuyoshi30matsuyoshi30
提出日時 2018-05-11 22:42:52
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 426 bytes
コンパイル時間 2,099 ms
コンパイル使用メモリ 79,364 KB
実行使用メモリ 54,308 KB
最終ジャッジ日時 2024-06-28 08:50:20
合計ジャッジ時間 4,959 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 134 ms
54,144 KB
testcase_02 AC 133 ms
53,844 KB
testcase_03 AC 132 ms
54,024 KB
testcase_04 AC 135 ms
54,072 KB
testcase_05 AC 135 ms
54,096 KB
testcase_06 AC 132 ms
54,172 KB
testcase_07 WA -
testcase_08 AC 132 ms
53,740 KB
testcase_09 AC 135 ms
54,308 KB
testcase_10 AC 133 ms
53,980 KB
testcase_11 WA -
testcase_12 AC 117 ms
52,664 KB
testcase_13 AC 134 ms
53,840 KB
testcase_14 WA -
testcase_15 AC 135 ms
54,068 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

class Main {
    public static void main(String[] args) {
        Scanner in = new Scanner(System.in);
        Long a = in.nextLong();
        Long b = in.nextLong();

        String ans = "Yes";

        if(a == b && a != 0 && b != 0) ans = "No";

        if(a % 2 != 0 && b % 2 != 0)
            if((a-b) % 2 == 0 || (b-a) % 2 == 0)
                ans = "No";

        System.out.println(ans);
    }
}
0