結果

問題 No.3149 find X which satisfies with equlation
ユーザー Shivam kumar Singh
提出日時 2025-05-20 21:22:00
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 85 ms / 2,000 ms
コード長 195 bytes
コンパイル時間 2,234 ms
コンパイル使用メモリ 77,088 KB
実行使用メモリ 75,952 KB
最終ジャッジ日時 2025-05-20 21:22:07
合計ジャッジ時間 6,633 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 44
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda: sys.stdin.readline().rstrip()


def solve():
    a, b = map(int, input().split())  
    print(a^b)

t = 1
# t = int(input())
for _ in range(t):
    solve()
0