結果

問題 No.939 and or
ユーザー tamatotamato
提出日時 2019-12-02 00:16:46
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 38 ms / 2,000 ms
コード長 338 bytes
コンパイル時間 197 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 52,316 KB
最終ジャッジ日時 2024-11-21 23:52:28
合計ジャッジ時間 2,321 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 30
権限があれば一括ダウンロードができます

ソースコード

diff #

a_raw, b_raw = map(int, input().split())

a = bin(a_raw)[2:]
b = bin(b_raw)[2:]
L = max(len(a), len(b))
a = a.zfill(L)
b = b.zfill(L)

ans = 1
for i in range(L):
    if a[i] == '0' and b[i] == '1':
        ans *= 2
    elif a[i] == '1' and b[i] == '0':
        print(0)
        exit()

if ans == 1:
    print(1)
else:
    print(ans // 2)
0