結果
| 問題 | No.1468 Colourful Pastel |
| ユーザー |
|
| 提出日時 | 2021-04-04 12:37:19 |
| 言語 | Python3 (3.14.3 + numpy 2.4.4 + scipy 1.17.1) |
| 結果 |
TLE
|
| 実行時間 | - |
| コード長 | 172 bytes |
| 記録 | |
| コンパイル時間 | 534 ms |
| コンパイル使用メモリ | 20,824 KB |
| 実行使用メモリ | 39,312 KB |
| 最終ジャッジ日時 | 2026-06-02 08:19:10 |
| 合計ジャッジ時間 | 5,814 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge1_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | -- * 3 |
| other | TLE * 1 -- * 24 |
ソースコード
n = int(input())
a = list(input().split())
b = list(input().split())
for i in range(n-1):
if a.count(b[i]) == 1:
a.remove(b[i])
print(''.join(a))