結果

問題 No.939 and or
ユーザー neko_the_shadowneko_the_shadow
提出日時 2019-12-04 11:45:05
言語 Java21
(openjdk 21)
結果
AC  
実行時間 56 ms / 2,000 ms
コード長 1,264 bytes
コンパイル時間 2,225 ms
コンパイル使用メモリ 77,612 KB
実行使用メモリ 37,352 KB
最終ジャッジ日時 2024-11-30 02:49:40
合計ジャッジ時間 4,473 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
37,080 KB
testcase_01 AC 52 ms
37,120 KB
testcase_02 AC 51 ms
37,332 KB
testcase_03 AC 51 ms
37,228 KB
testcase_04 AC 51 ms
37,316 KB
testcase_05 AC 50 ms
37,332 KB
testcase_06 AC 51 ms
37,192 KB
testcase_07 AC 49 ms
37,336 KB
testcase_08 AC 51 ms
37,324 KB
testcase_09 AC 56 ms
37,324 KB
testcase_10 AC 52 ms
37,240 KB
testcase_11 AC 50 ms
37,200 KB
testcase_12 AC 51 ms
37,012 KB
testcase_13 AC 51 ms
37,172 KB
testcase_14 AC 52 ms
36,892 KB
testcase_15 AC 50 ms
37,092 KB
testcase_16 AC 51 ms
37,352 KB
testcase_17 AC 49 ms
37,200 KB
testcase_18 AC 49 ms
37,236 KB
testcase_19 AC 50 ms
37,224 KB
testcase_20 AC 51 ms
37,200 KB
testcase_21 AC 50 ms
37,012 KB
testcase_22 AC 50 ms
36,980 KB
testcase_23 AC 48 ms
36,952 KB
testcase_24 AC 51 ms
37,020 KB
testcase_25 AC 50 ms
37,200 KB
testcase_26 AC 51 ms
36,892 KB
testcase_27 AC 49 ms
37,108 KB
testcase_28 AC 50 ms
37,108 KB
testcase_29 AC 51 ms
37,332 KB
testcase_30 AC 51 ms
37,352 KB
testcase_31 AC 49 ms
37,332 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package _939;

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.io.PrintWriter;
import java.util.regex.Pattern;

public class Main {
    public void solve(BufferedReader stdin, PrintWriter stdout) throws NumberFormatException, IOException {
        Pattern space = Pattern.compile(" ");
        String[] line = space.split(stdin.readLine());

        long a = Long.parseLong(line[0]);
        long b = Long.parseLong(line[1]);

        long n = 0;
        for (long i = 31; i >= 0; i--) {
            if ((a & (1 << i)) == 0) {
                if ((b & (1 << i)) != 0) {
                    n++;
                }
            } else {
                if ((b & (1 << i)) == 0) {
                    stdout.println(0);
                    return ;
                }
            }
        }

        long ans = 1;
        for (long i = 0; i < n - 1; i++) ans *= 2;
        stdout.println(ans);
    }

    public static void main(String[] args) throws NumberFormatException, IOException {
        BufferedReader stdin = new BufferedReader(new InputStreamReader(System.in));
        PrintWriter stdout = new PrintWriter(System.out, false);
        new Main().solve(stdin, stdout);
        stdout.flush();
    }
}
0