結果

問題 No.1957 Xor Min
ユーザー 8nd5t8nd5t
提出日時 2022-05-27 21:27:41
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 149 ms / 2,000 ms
コード長 544 bytes
コンパイル時間 597 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 84,864 KB
最終ジャッジ日時 2024-09-20 15:27:54
合計ジャッジ時間 5,790 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 25
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter,defaultdict,deque
from heapq import heappop,heappush,heapify
from bisect import bisect_left,bisect_right
import sys,math,itertools,pprint,fractions
sys.setrecursionlimit(10**8)
mod = 10**9+7
INF = float('inf')
def inp(): return int(sys.stdin.readline())
def inpl(): return list(map(int, sys.stdin.readline().split()))
def inpl_1(): return list(map(lambda x:int(x)-1, sys.stdin.readline().split()))
def err(x): print(x); exit()

a,b = inpl()
if a<b:
    a,b = b,a
ln = len(bin(a)[2:])
print(min(pow(2,ln-1)-1, b))
0