結果

問題 No.1432 Not Xor
ユーザー roarisroaris
提出日時 2021-03-19 21:46:17
言語 PyPy3
(7.3.13)
結果
AC  
実行時間 91 ms / 2,000 ms
コード長 116 bytes
コンパイル時間 887 ms
コンパイル使用メモリ 86,976 KB
実行使用メモリ 71,864 KB
最終ジャッジ日時 2023-08-12 01:42:54
合計ジャッジ時間 2,137 ms
ジャッジサーバーID
(参考情報)
judge14 / judge11
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 89 ms
71,416 KB
testcase_01 AC 90 ms
71,692 KB
testcase_02 AC 90 ms
71,552 KB
testcase_03 AC 90 ms
71,672 KB
testcase_04 AC 90 ms
71,832 KB
testcase_05 AC 88 ms
71,864 KB
testcase_06 AC 87 ms
71,628 KB
testcase_07 AC 91 ms
71,568 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
from collections import *

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