結果
| 問題 | No.1468 Colourful Pastel |
| ユーザー |
|
| 提出日時 | 2022-11-03 23:22:42 |
| 言語 | PyPy3 (7.3.23 + ACL) |
| 結果 |
AC
不安定
|
| 実行時間 | 96 ms / 1,000 ms |
| + 140µs | |
| コード長 | 166 bytes |
| 記録 | |
| コンパイル時間 | 217 ms |
| コンパイル使用メモリ | 96,236 KB |
| 実行使用メモリ | 95,720 KB |
| 最終ジャッジ日時 | 2026-08-16 12:28:59 |
| 合計ジャッジ時間 | 4,544 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge3_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 25 |
ソースコード
import collections N = int(input()) A = list(input().split()) B = list(input().split()) CA = collections.Counter(A) CB = collections.Counter(B) print(*(CA-CB).keys())