結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
37,416 KB
testcase_01 AC 51 ms
37,016 KB
testcase_02 AC 51 ms
37,392 KB
testcase_03 AC 52 ms
37,428 KB
testcase_04 AC 52 ms
37,240 KB
testcase_05 AC 52 ms
37,420 KB
testcase_06 AC 50 ms
37,016 KB
testcase_07 AC 51 ms
37,216 KB
testcase_08 AC 51 ms
37,308 KB
testcase_09 AC 50 ms
37,016 KB
testcase_10 AC 50 ms
37,096 KB
testcase_11 AC 50 ms
37,428 KB
testcase_12 AC 50 ms
37,284 KB
testcase_13 AC 52 ms
36,884 KB
testcase_14 AC 49 ms
37,400 KB
testcase_15 AC 49 ms
37,400 KB
testcase_16 AC 51 ms
37,104 KB
testcase_17 AC 51 ms
37,424 KB
testcase_18 AC 51 ms
37,180 KB
testcase_19 AC 51 ms
37,392 KB
testcase_20 AC 57 ms
37,320 KB
testcase_21 AC 50 ms
37,428 KB
testcase_22 AC 51 ms
37,348 KB
testcase_23 AC 50 ms
37,424 KB
testcase_24 AC 51 ms
37,276 KB
testcase_25 AC 49 ms
37,304 KB
testcase_26 AC 49 ms
36,888 KB
testcase_27 AC 49 ms
37,016 KB
testcase_28 AC 49 ms
37,396 KB
testcase_29 AC 50 ms
37,104 KB
testcase_30 AC 50 ms
36,880 KB
testcase_31 AC 50 ms
37,340 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