結果

問題 No.1511 A ? B Problem
ユーザー miya145592miya145592
提出日時 2023-04-30 17:08:10
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 69 ms / 2,000 ms
コード長 61 bytes
コンパイル時間 306 ms
コンパイル使用メモリ 86,992 KB
実行使用メモリ 71,580 KB
最終ジャッジ日時 2023-08-12 08:20:16
合計ジャッジ時間 3,041 ms
ジャッジサーバーID
(参考情報)
judge14 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 67 ms
71,196 KB
testcase_01 AC 67 ms
71,580 KB
testcase_02 AC 64 ms
71,204 KB
testcase_03 AC 64 ms
71,408 KB
testcase_04 AC 67 ms
71,452 KB
testcase_05 AC 66 ms
71,464 KB
testcase_06 AC 67 ms
71,348 KB
testcase_07 AC 66 ms
71,372 KB
testcase_08 AC 68 ms
71,128 KB
testcase_09 AC 68 ms
71,336 KB
testcase_10 AC 68 ms
71,312 KB
testcase_11 AC 69 ms
71,396 KB
testcase_12 AC 68 ms
71,268 KB
testcase_13 AC 68 ms
71,392 KB
testcase_14 AC 67 ms
71,096 KB
testcase_15 AC 67 ms
71,412 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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