結果

問題 No.1468 Colourful Pastel
ユーザー aaaaaaaaaa2230
提出日時 2021-04-04 15:05:15
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 127 ms / 1,000 ms
コード長 196 bytes
コンパイル時間 394 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 98,432 KB
最終ジャッジ日時 2024-12-27 22:46:15
合計ジャッジ時間 3,798 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 25
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter
n = int(input())
A = list(input().split())
B = list(input().split())
a = Counter(A)
b = Counter(B)
for i,j in a.items():
    if b[i] != j:
        print(i)
        
0