結果

問題 No.939 and or
ユーザー brthyyjpbrthyyjp
提出日時 2020-11-25 19:58:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 38 ms / 2,000 ms
コード長 487 bytes
コンパイル時間 251 ms
コンパイル使用メモリ 82,500 KB
実行使用メモリ 53,752 KB
最終ジャッジ日時 2024-07-23 19:25:57
合計ジャッジ時間 2,400 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,840 KB
testcase_01 AC 38 ms
52,396 KB
testcase_02 AC 37 ms
52,236 KB
testcase_03 AC 37 ms
52,236 KB
testcase_04 AC 37 ms
52,664 KB
testcase_05 AC 37 ms
52,804 KB
testcase_06 AC 37 ms
52,312 KB
testcase_07 AC 36 ms
52,896 KB
testcase_08 AC 38 ms
53,752 KB
testcase_09 AC 37 ms
52,612 KB
testcase_10 AC 37 ms
52,964 KB
testcase_11 AC 36 ms
52,432 KB
testcase_12 AC 36 ms
53,004 KB
testcase_13 AC 36 ms
52,456 KB
testcase_14 AC 36 ms
53,220 KB
testcase_15 AC 37 ms
53,544 KB
testcase_16 AC 36 ms
52,428 KB
testcase_17 AC 37 ms
52,268 KB
testcase_18 AC 37 ms
53,424 KB
testcase_19 AC 36 ms
52,952 KB
testcase_20 AC 37 ms
52,548 KB
testcase_21 AC 37 ms
52,764 KB
testcase_22 AC 36 ms
53,236 KB
testcase_23 AC 37 ms
53,196 KB
testcase_24 AC 38 ms
52,636 KB
testcase_25 AC 38 ms
52,152 KB
testcase_26 AC 38 ms
52,680 KB
testcase_27 AC 38 ms
53,148 KB
testcase_28 AC 36 ms
52,388 KB
testcase_29 AC 36 ms
52,756 KB
testcase_30 AC 37 ms
52,864 KB
testcase_31 AC 37 ms
52,932 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

a,b = map(int, input().split())

if a == b:
    print(1)
    exit()

if a > b:
    print(0)
    exit()

ans = 1
a = list(format(a, 'b'))
b = list(format(b, 'b'))
a.reverse()
b.reverse()

if len(b) < len(a):
    b = b+['0']*(len(a)-len(b))
else:
    a = a+['0']*(len(b)-len(a))

for i, j in zip(a, b):
    if i == '0' and j == '1':
        ans *= 2
    elif i == '0' and j == '0':
        ans *= 1
    elif i == '1' and j == '1':
        ans *= 1
    else:
        ans = 0

print(ans//2)
0