結果

問題 No.939 and or
ユーザー htensaihtensai
提出日時 2020-01-18 19:17:03
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 631 bytes
コンパイル時間 2,042 ms
コンパイル使用メモリ 74,276 KB
実行使用メモリ 37,204 KB
最終ジャッジ日時 2024-06-28 01:15:19
合計ジャッジ時間 4,636 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
37,076 KB
testcase_01 AC 49 ms
37,064 KB
testcase_02 AC 50 ms
36,860 KB
testcase_03 AC 49 ms
37,032 KB
testcase_04 AC 49 ms
37,032 KB
testcase_05 WA -
testcase_06 AC 52 ms
37,204 KB
testcase_07 AC 51 ms
36,980 KB
testcase_08 AC 53 ms
36,672 KB
testcase_09 AC 50 ms
36,864 KB
testcase_10 AC 49 ms
36,860 KB
testcase_11 AC 50 ms
36,976 KB
testcase_12 AC 50 ms
36,536 KB
testcase_13 WA -
testcase_14 AC 50 ms
36,544 KB
testcase_15 AC 50 ms
36,916 KB
testcase_16 AC 50 ms
36,940 KB
testcase_17 AC 50 ms
36,932 KB
testcase_18 AC 51 ms
36,916 KB
testcase_19 AC 52 ms
36,552 KB
testcase_20 WA -
testcase_21 AC 50 ms
37,076 KB
testcase_22 AC 51 ms
36,816 KB
testcase_23 AC 52 ms
37,100 KB
testcase_24 AC 51 ms
36,972 KB
testcase_25 AC 49 ms
36,664 KB
testcase_26 AC 50 ms
37,032 KB
testcase_27 AC 52 ms
36,652 KB
testcase_28 AC 50 ms
36,568 KB
testcase_29 WA -
testcase_30 AC 50 ms
36,860 KB
testcase_31 WA -
権限があれば一括ダウンロードができます

ソースコード

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;
        while (c > 0) {
            count += c % 2;
            c /= 2;
        }
        System.out.println((long)(Math.pow(2, count - 1)));
    }
}
0