結果

問題 No.683 Two Operations No.3
ユーザー matsuyoshi30matsuyoshi30
提出日時 2018-05-12 01:08:21
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 716 bytes
コンパイル時間 1,968 ms
コンパイル使用メモリ 74,688 KB
実行使用メモリ 41,816 KB
最終ジャッジ日時 2024-06-28 09:27:30
合計ジャッジ時間 4,763 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
41,104 KB
testcase_01 AC 130 ms
41,516 KB
testcase_02 AC 124 ms
41,180 KB
testcase_03 AC 121 ms
41,436 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 123 ms
41,016 KB
testcase_07 AC 129 ms
41,128 KB
testcase_08 AC 127 ms
41,564 KB
testcase_09 WA -
testcase_10 AC 122 ms
41,184 KB
testcase_11 AC 124 ms
41,296 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 127 ms
41,440 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();

        if(a > b) {
            long tmp = a;
            a = b;
            b = tmp;
        }
        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