結果

問題 No.683 Two Operations No.3
ユーザー matsuyoshi30matsuyoshi30
提出日時 2018-05-11 23:13:03
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 853 bytes
コンパイル時間 2,575 ms
コンパイル使用メモリ 75,184 KB
実行使用メモリ 54,400 KB
最終ジャッジ日時 2024-06-28 09:00:29
合計ジャッジ時間 5,259 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 132 ms
53,936 KB
testcase_02 AC 134 ms
54,036 KB
testcase_03 AC 117 ms
52,600 KB
testcase_04 AC 130 ms
54,324 KB
testcase_05 WA -
testcase_06 AC 133 ms
54,152 KB
testcase_07 WA -
testcase_08 AC 116 ms
52,696 KB
testcase_09 AC 130 ms
53,940 KB
testcase_10 AC 130 ms
53,984 KB
testcase_11 WA -
testcase_12 AC 131 ms
53,952 KB
testcase_13 AC 131 ms
53,836 KB
testcase_14 AC 133 ms
54,096 KB
testcase_15 AC 135 ms
54,132 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 == 0 && b == 0) {

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

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