結果

問題 No.683 Two Operations No.3
ユーザー matsuyoshi30matsuyoshi30
提出日時 2018-05-12 12:20:31
言語 Java21
(openjdk 21)
結果
AC  
実行時間 138 ms / 2,000 ms
コード長 737 bytes
コンパイル時間 2,047 ms
コンパイル使用メモリ 73,844 KB
実行使用メモリ 41,504 KB
最終ジャッジ日時 2024-06-28 09:58:19
合計ジャッジ時間 4,986 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 117 ms
39,732 KB
testcase_01 AC 131 ms
41,172 KB
testcase_02 AC 133 ms
41,064 KB
testcase_03 AC 131 ms
41,504 KB
testcase_04 AC 135 ms
40,972 KB
testcase_05 AC 137 ms
41,476 KB
testcase_06 AC 131 ms
40,876 KB
testcase_07 AC 131 ms
41,184 KB
testcase_08 AC 138 ms
41,012 KB
testcase_09 AC 133 ms
41,200 KB
testcase_10 AC 132 ms
41,440 KB
testcase_11 AC 117 ms
39,748 KB
testcase_12 AC 133 ms
41,348 KB
testcase_13 AC 131 ms
41,096 KB
testcase_14 AC 132 ms
41,024 KB
testcase_15 AC 131 ms
41,324 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();

        boolean ans = rec(a, b);
        if(ans)
            System.out.println("Yes");
        else
            System.out.println("No");
    }

    private static boolean rec(long i, long j) {
        if(i == 0 || j == 0) return true;

        if(i % 2 == 0 && j % 2 == 0)
            return rec(i / 2, j - 1) | rec(i - 1, j / 2);
        if(i % 2 == 1 && j % 2 == 1)
            return false;
        if(i % 2 == 1)
            return rec(i - 1, j / 2);
        if(j % 2 == 1)
            return rec(i / 2, j - 1);

        return false;
    }
}
0