結果

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

ソースコード

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 b.items():
    if a[i] != j:
        print(i)
0