結果

問題 No.1511 A ? B Problem
ユーザー AAAR SalmonAAAR Salmon
提出日時 2021-05-21 21:20:52
言語 PyPy3
(7.3.13)
結果
AC  
実行時間 108 ms / 2,000 ms
コード長 240 bytes
コンパイル時間 582 ms
コンパイル使用メモリ 87,000 KB
実行使用メモリ 72,468 KB
最終ジャッジ日時 2023-07-31 14:15:49
合計ジャッジ時間 3,030 ms
ジャッジサーバーID
(参考情報)
judge11 / judge12
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 107 ms
72,344 KB
testcase_01 AC 106 ms
72,172 KB
testcase_02 AC 107 ms
72,316 KB
testcase_03 AC 104 ms
72,468 KB
testcase_04 AC 105 ms
72,460 KB
testcase_05 AC 105 ms
72,124 KB
testcase_06 AC 106 ms
72,172 KB
testcase_07 AC 106 ms
72,404 KB
testcase_08 AC 105 ms
72,264 KB
testcase_09 AC 108 ms
72,224 KB
testcase_10 AC 106 ms
72,228 KB
testcase_11 AC 107 ms
72,292 KB
testcase_12 AC 107 ms
72,460 KB
testcase_13 AC 107 ms
72,220 KB
testcase_14 AC 105 ms
72,236 KB
testcase_15 AC 105 ms
72,460 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
import math
from math import sin, cos, tan
from functools import reduce
from collections import deque
import heapq
sys.setrecursionlimit(1000000)
intm1 = lambda x:int(x)-1

A,B = map(int,input().split())
print((A | B) - (A & B))
0