結果

問題 No.8057 A xor B = C
ユーザー ok
提出日時 2020-04-01 21:47:18
言語 Python2
(2.7.18)
結果
RE  
実行時間 -
コード長 59 bytes
コンパイル時間 479 ms
コンパイル使用メモリ 6,944 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-06-27 10:21:15
合計ジャッジ時間 849 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other RE * 5
権限があれば一括ダウンロードができます

ソースコード

diff #

A=long(raw_input())
B=long(raw_input())
res = A^B
print res
0