結果

問題 No.939 and or
ユーザー tentententen
提出日時 2024-02-06 08:25:46
言語 Java21
(openjdk 21)
結果
AC  
実行時間 55 ms / 2,000 ms
コード長 1,547 bytes
コンパイル時間 2,570 ms
コンパイル使用メモリ 78,160 KB
実行使用メモリ 50,600 KB
最終ジャッジ日時 2024-09-28 11:54:33
合計ジャッジ時間 4,800 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
50,132 KB
testcase_01 AC 53 ms
50,600 KB
testcase_02 AC 53 ms
50,264 KB
testcase_03 AC 51 ms
50,280 KB
testcase_04 AC 51 ms
50,320 KB
testcase_05 AC 50 ms
50,200 KB
testcase_06 AC 51 ms
50,416 KB
testcase_07 AC 54 ms
50,284 KB
testcase_08 AC 54 ms
50,340 KB
testcase_09 AC 53 ms
50,336 KB
testcase_10 AC 55 ms
50,184 KB
testcase_11 AC 52 ms
50,160 KB
testcase_12 AC 53 ms
50,184 KB
testcase_13 AC 53 ms
50,344 KB
testcase_14 AC 52 ms
50,432 KB
testcase_15 AC 55 ms
49,936 KB
testcase_16 AC 53 ms
50,380 KB
testcase_17 AC 53 ms
50,268 KB
testcase_18 AC 51 ms
50,240 KB
testcase_19 AC 52 ms
50,340 KB
testcase_20 AC 51 ms
50,348 KB
testcase_21 AC 53 ms
50,476 KB
testcase_22 AC 53 ms
50,476 KB
testcase_23 AC 53 ms
49,936 KB
testcase_24 AC 53 ms
50,472 KB
testcase_25 AC 52 ms
50,264 KB
testcase_26 AC 50 ms
50,328 KB
testcase_27 AC 54 ms
50,232 KB
testcase_28 AC 52 ms
50,388 KB
testcase_29 AC 51 ms
50,240 KB
testcase_30 AC 55 ms
50,252 KB
testcase_31 AC 53 ms
50,172 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;
import java.util.function.*;
import java.util.stream.*;

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int a = sc.nextInt();
        int b = sc.nextInt();
        long ans = 1;
        for (int i = 0; i < 31; i++) {
            if ((a & (1 << i)) == 0) {
                if ((b & (1 << i)) > 0) {
                    ans *= 2;
                }
            } else {
                if ((b & (1 << i)) == 0) {
                    ans = 0;
                }
            }
        }
        if (ans > 1) {
            ans /= 2;
        }
        System.out.println(ans);
    }
}
class Scanner {
    BufferedReader br;
    StringTokenizer st = new StringTokenizer("");
    StringBuilder sb = new StringBuilder();
    
    public Scanner() {
        try {
            br = new BufferedReader(new InputStreamReader(System.in));
        } catch (Exception e) {
            
        }
    }
    
    public int nextInt() {
        return Integer.parseInt(next());
    }
    
    public long nextLong() {
        return Long.parseLong(next());
    }
    
    public double nextDouble() {
        return Double.parseDouble(next());
    }
    
    public String next() {
        try {
            while (!st.hasMoreTokens()) {
                st = new StringTokenizer(br.readLine());
            }
        } catch (Exception e) {
            e.printStackTrace();
        } finally {
            return st.nextToken();
        }
    }
    
}
0