結果
| 問題 | No.1468 Colourful Pastel |
| ユーザー |
rlangevin
|
| 提出日時 | 2024-09-13 08:52:26 |
| 言語 | PyPy3 (7.3.23 + ACL) |
| 結果 |
AC
不安定
|
| 実行時間 | 106 ms / 1,000 ms |
| + 350µs | |
| コード長 | 171 bytes |
| 記録 | |
| コンパイル時間 | 228 ms |
| コンパイル使用メモリ | 95,852 KB |
| 実行使用メモリ | 96,868 KB |
| 最終ジャッジ日時 | 2026-08-26 01:30:40 |
| 合計ジャッジ時間 | 4,579 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 25 |
ソースコード
from collections import *
N = int(input())
A = Counter(list(input().split()))
B = Counter(list(input().split()))
for k, v in A.items():
if v != B[k]:
print(k)
rlangevin