結果

問題 No.683 Two Operations No.3
ユーザー matsuyoshi30matsuyoshi30
提出日時 2018-05-12 00:18:36
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 872 bytes
コンパイル時間 2,051 ms
コンパイル使用メモリ 74,764 KB
実行使用メモリ 55,896 KB
最終ジャッジ日時 2024-06-28 09:17:15
合計ジャッジ時間 5,213 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 135 ms
53,836 KB
testcase_02 AC 133 ms
54,088 KB
testcase_03 AC 132 ms
54,480 KB
testcase_04 AC 132 ms
54,188 KB
testcase_05 AC 135 ms
54,452 KB
testcase_06 AC 135 ms
54,036 KB
testcase_07 AC 134 ms
54,216 KB
testcase_08 AC 136 ms
53,712 KB
testcase_09 AC 135 ms
54,028 KB
testcase_10 AC 132 ms
53,868 KB
testcase_11 WA -
testcase_12 AC 133 ms
53,844 KB
testcase_13 AC 132 ms
53,880 KB
testcase_14 WA -
testcase_15 AC 135 ms
53,972 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();
        if(a > b) {
            long tmp = a;
            a = b;
            b = tmp;
        }

        String ans = "";
        if(a == 0) {
            ans = "Yes";
        } else if(a == 1) {
            if(b % 2 == 0)
                ans = "Yes";
            else
                ans = "No";
        } else if(a % 2 == 0) {
            if(b == 2) {
                ans = "No";
            } else if(b != 4 && a == b) {
                ans = "No";
            }else {
                ans = "Yes";
            }
        } else {
            if(b % 2 != 0)
                ans = "No";
            else
                ans = "Yes";
        }

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