結果

問題 No.1468 Colourful Pastel
ユーザー yumechi
提出日時 2021-04-08 02:51:30
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 78 ms / 1,000 ms
コード長 142 bytes
コンパイル時間 685 ms
コンパイル使用メモリ 82,472 KB
実行使用メモリ 85,100 KB
最終ジャッジ日時 2024-06-23 06:43:43
合計ジャッジ時間 2,994 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 25
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter

n = int(input())
a = Counter(input().split()) + Counter(input().split())
print([e for e in a if a[e] % 2][0])
0