結果

問題 No.1957 Xor Min
ユーザー moon17moon17
提出日時 2022-05-27 22:16:49
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 373 bytes
コンパイル時間 104 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-09-20 16:01:40
合計ジャッジ時間 1,930 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,752 KB
testcase_01 AC 26 ms
10,880 KB
testcase_02 AC 48 ms
10,752 KB
testcase_03 AC 27 ms
10,752 KB
testcase_04 AC 26 ms
10,752 KB
testcase_05 AC 26 ms
10,752 KB
testcase_06 AC 34 ms
10,752 KB
testcase_07 AC 30 ms
10,752 KB
testcase_08 AC 31 ms
10,752 KB
testcase_09 AC 27 ms
10,752 KB
testcase_10 AC 27 ms
10,752 KB
testcase_11 AC 27 ms
10,752 KB
testcase_12 AC 27 ms
10,752 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 50 ms
10,752 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 47 ms
10,752 KB
testcase_20 AC 47 ms
10,752 KB
testcase_21 AC 46 ms
10,752 KB
testcase_22 AC 48 ms
10,752 KB
testcase_23 AC 31 ms
10,752 KB
testcase_24 WA -
testcase_25 AC 48 ms
10,752 KB
testcase_26 WA -
testcase_27 AC 50 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
A, B = map(int, input().split())

ans=0
amin=max(2**int(math.log2(A))-100,0)
bmin=max(2**int(math.log2(B))-100,0)
amax=min(amin+200,A+1)
bmax=min(bmin+200,B+1)
#print(amin, amax, bmin, bmax)
for a in range(amin, amax, 1):
    for b in range(bmin, bmax, 1):
        ans1=min(a, b, a^b)
#        print(a,b,a^b)
        if ans<ans1:
            ans=ans1
print(ans)
0