結果

問題 No.581 XOR
ユーザー Quach Tri DatQuach Tri Dat
提出日時 2019-06-30 17:08:59
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 104 ms / 2,000 ms
コード長 89 bytes
コンパイル時間 788 ms
コンパイル使用メモリ 87,176 KB
実行使用メモリ 72,528 KB
最終ジャッジ日時 2023-09-20 11:21:04
合計ジャッジ時間 1,922 ms
ジャッジサーバーID
(参考情報)
judge13 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 102 ms
72,236 KB
testcase_01 AC 102 ms
72,228 KB
testcase_02 AC 103 ms
72,440 KB
testcase_03 AC 104 ms
72,416 KB
testcase_04 AC 103 ms
72,484 KB
testcase_05 AC 101 ms
72,492 KB
testcase_06 AC 102 ms
72,392 KB
testcase_07 AC 101 ms
72,528 KB
testcase_08 AC 103 ms
72,268 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from functools import reduce
print(reduce(lambda x, y: x ^ y, map(int, input().split())))
0