結果

問題 No.939 and or
ユーザー ks2mks2m
提出日時 2019-12-03 00:09:51
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 428 bytes
コンパイル時間 1,830 ms
コンパイル使用メモリ 74,616 KB
実行使用メモリ 56,140 KB
最終ジャッジ日時 2024-11-25 02:07:25
合計ジャッジ時間 6,200 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 115 ms
53,820 KB
testcase_01 AC 115 ms
54,012 KB
testcase_02 AC 105 ms
52,584 KB
testcase_03 AC 116 ms
53,720 KB
testcase_04 AC 104 ms
52,756 KB
testcase_05 WA -
testcase_06 AC 114 ms
53,948 KB
testcase_07 AC 103 ms
52,708 KB
testcase_08 AC 106 ms
52,460 KB
testcase_09 AC 104 ms
52,528 KB
testcase_10 AC 99 ms
52,448 KB
testcase_11 AC 103 ms
52,824 KB
testcase_12 AC 106 ms
53,072 KB
testcase_13 WA -
testcase_14 AC 112 ms
53,984 KB
testcase_15 AC 112 ms
53,860 KB
testcase_16 AC 119 ms
53,912 KB
testcase_17 AC 102 ms
52,304 KB
testcase_18 AC 114 ms
53,956 KB
testcase_19 AC 108 ms
53,544 KB
testcase_20 WA -
testcase_21 AC 112 ms
53,712 KB
testcase_22 AC 113 ms
53,944 KB
testcase_23 AC 112 ms
53,780 KB
testcase_24 AC 106 ms
52,732 KB
testcase_25 AC 105 ms
52,852 KB
testcase_26 AC 115 ms
53,992 KB
testcase_27 AC 104 ms
52,568 KB
testcase_28 AC 101 ms
52,708 KB
testcase_29 WA -
testcase_30 AC 115 ms
53,776 KB
testcase_31 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) throws Exception {
		Scanner sc = new Scanner(System.in);
		int a = sc.nextInt();
		int b = sc.nextInt();
		sc.close();

		if ((a & b) != a) {
			System.out.println(0);
			return;
		}

		int c = b - a;
		int cnt = 0;
		for (int i = 0; i < 32; i++) {
			if ((c >> i & 1) == 1) {
				cnt++;
			}
		}
		System.out.println(1 << (cnt - 1));
	}
}
0