結果

問題 No.1432 Not Xor
ユーザー otsunekootsuneko
提出日時 2021-05-05 01:18:45
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 73 ms / 2,000 ms
コード長 52 bytes
コンパイル時間 668 ms
コンパイル使用メモリ 87,384 KB
実行使用メモリ 71,604 KB
最終ジャッジ日時 2023-10-01 03:30:16
合計ジャッジ時間 1,752 ms
ジャッジサーバーID
(参考情報)
judge14 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 68 ms
71,200 KB
testcase_01 AC 67 ms
71,344 KB
testcase_02 AC 68 ms
71,292 KB
testcase_03 AC 66 ms
71,472 KB
testcase_04 AC 73 ms
71,604 KB
testcase_05 AC 65 ms
71,584 KB
testcase_06 AC 66 ms
71,236 KB
testcase_07 AC 67 ms
71,240 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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