結果

問題 No.939 and or
ユーザー ks2mks2m
提出日時 2019-12-03 00:13:56
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 430 bytes
コンパイル時間 2,270 ms
コンパイル使用メモリ 74,648 KB
実行使用メモリ 56,160 KB
最終ジャッジ日時 2024-05-03 21:36:10
合計ジャッジ時間 8,042 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 137 ms
54,000 KB
testcase_02 WA -
testcase_03 AC 136 ms
54,372 KB
testcase_04 AC 138 ms
54,004 KB
testcase_05 WA -
testcase_06 AC 134 ms
54,000 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 137 ms
53,912 KB
testcase_10 AC 136 ms
54,256 KB
testcase_11 AC 136 ms
53,976 KB
testcase_12 AC 135 ms
54,236 KB
testcase_13 WA -
testcase_14 AC 138 ms
54,052 KB
testcase_15 AC 138 ms
54,360 KB
testcase_16 AC 140 ms
54,132 KB
testcase_17 WA -
testcase_18 AC 140 ms
54,056 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 136 ms
54,236 KB
testcase_22 AC 139 ms
54,040 KB
testcase_23 AC 135 ms
54,156 KB
testcase_24 AC 137 ms
54,008 KB
testcase_25 AC 135 ms
53,884 KB
testcase_26 WA -
testcase_27 AC 139 ms
54,176 KB
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 138 ms
53,880 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(1L << (cnt - 1));
	}
}
0