結果
| 問題 | No.1468 Colourful Pastel |
| ユーザー |
|
| 提出日時 | 2022-05-01 03:55:32 |
| 言語 | Python3 (3.14.3 + numpy 2.4.4 + scipy 1.17.1) |
| 結果 |
AC
|
| 実行時間 | 123 ms / 1,000 ms |
| コード長 | 203 bytes |
| 記録 | |
| コンパイル時間 | 413 ms |
| コンパイル使用メモリ | 20,952 KB |
| 実行使用メモリ | 26,864 KB |
| 最終ジャッジ日時 | 2026-03-20 01:37:48 |
| 合計ジャッジ時間 | 3,953 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 25 |
ソースコード
import collections
n=int(input())
l_a=input().split()
l_b=input().split()
nl_a=collections.Counter(l_a)
nl_b=collections.Counter(l_b)
for i,j in nl_a.items():
if nl_b[i]==j:continue
else:print(i)