結果
| 問題 | No.1468 Colourful Pastel |
| ユーザー |
|
| 提出日時 | 2021-07-09 16:23:02 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
AC
|
| 実行時間 | 101 ms / 1,000 ms |
| コード長 | 178 bytes |
| コンパイル時間 | 107 ms |
| コンパイル使用メモリ | 12,288 KB |
| 実行使用メモリ | 23,564 KB |
| 最終ジャッジ日時 | 2024-07-01 14:00:55 |
| 合計ジャッジ時間 | 2,605 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 25 |
ソースコード
from collections import Counter
n=int(input())
a=list(map(str,input().split()))
b=list(map(str,input().split()))
A=Counter(a)
B=Counter(b)
ans=(A-B).keys()
print(*ans)