結果

問題 No.939 and or
ユーザー htensaihtensai
提出日時 2020-01-18 19:21:37
言語 Java
(openjdk 23)
結果
AC  
実行時間 56 ms / 2,000 ms
コード長 718 bytes
コンパイル時間 2,024 ms
コンパイル使用メモリ 74,320 KB
実行使用メモリ 37,280 KB
最終ジャッジ日時 2024-06-28 01:22:17
合計ジャッジ時間 5,016 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
36,836 KB
testcase_01 AC 53 ms
37,096 KB
testcase_02 AC 53 ms
36,792 KB
testcase_03 AC 53 ms
37,024 KB
testcase_04 AC 54 ms
36,804 KB
testcase_05 AC 55 ms
37,184 KB
testcase_06 AC 55 ms
36,684 KB
testcase_07 AC 56 ms
37,280 KB
testcase_08 AC 54 ms
37,196 KB
testcase_09 AC 54 ms
36,688 KB
testcase_10 AC 55 ms
36,960 KB
testcase_11 AC 54 ms
36,560 KB
testcase_12 AC 54 ms
36,696 KB
testcase_13 AC 54 ms
36,856 KB
testcase_14 AC 53 ms
37,072 KB
testcase_15 AC 52 ms
37,088 KB
testcase_16 AC 53 ms
37,044 KB
testcase_17 AC 56 ms
36,964 KB
testcase_18 AC 55 ms
36,880 KB
testcase_19 AC 56 ms
37,068 KB
testcase_20 AC 53 ms
37,004 KB
testcase_21 AC 54 ms
36,880 KB
testcase_22 AC 55 ms
37,056 KB
testcase_23 AC 54 ms
36,884 KB
testcase_24 AC 54 ms
37,112 KB
testcase_25 AC 55 ms
37,052 KB
testcase_26 AC 54 ms
37,064 KB
testcase_27 AC 53 ms
36,840 KB
testcase_28 AC 54 ms
37,044 KB
testcase_29 AC 55 ms
36,872 KB
testcase_30 AC 55 ms
37,092 KB
testcase_31 AC 54 ms
36,544 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.*;

public class Main {
    public static void main(String[] args) throws Exception {
        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
        String[] line = br.readLine().split(" ", 2);
        int a = Integer.parseInt(line[0]);
        int b = Integer.parseInt(line[1]);
        if ((a & b) != a) {
            System.out.println(0);
            return;
        }
        int count = 0;
        int c = b - a;
        if (c == 0) {
            System.out.println(1);
            return;
        }
        while (c > 0) {
            count += c % 2;
            c /= 2;
        }
        System.out.println((long)(Math.pow(2, count - 1)));
    }
}
0