結果

問題 No.1468 Colourful Pastel
ユーザー convexineq
提出日時 2021-04-04 20:30:19
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 100 ms / 1,000 ms
コード長 153 bytes
コンパイル時間 970 ms
コンパイル使用メモリ 82,256 KB
実行使用メモリ 85,120 KB
最終ジャッジ日時 2024-12-28 06:39:10
合計ジャッジ時間 3,552 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 25
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter
n = input()
d = Counter(input().split())
for i in input().split():
    d[i] -= 1
for k,v in d.items():
    if v: print(k)
0