結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 135 ms
53,688 KB
testcase_01 AC 134 ms
53,688 KB
testcase_02 AC 133 ms
53,864 KB
testcase_03 AC 136 ms
54,060 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 133 ms
54,044 KB
testcase_07 AC 133 ms
53,796 KB
testcase_08 AC 132 ms
54,208 KB
testcase_09 WA -
testcase_10 AC 137 ms
53,928 KB
testcase_11 AC 132 ms
53,796 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 132 ms
53,900 KB
testcase_15 WA -
権限があれば一括ダウンロードができます

ソースコード

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;

        boolean b = false;
        if(i % 2 == 0) b = rec(i / 2, j - 1);
        if(j % 2 == 0) b = rec(i - 1, j / 2);

        return b;
    }
}
0