結果
| 問題 |
No.1468 Colourful Pastel
|
| ユーザー |
|
| 提出日時 | 2021-04-04 13:05:08 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
TLE
(最新)
AC
(最初)
|
| 実行時間 | - |
| コード長 | 184 bytes |
| コンパイル時間 | 225 ms |
| コンパイル使用メモリ | 12,416 KB |
| 実行使用メモリ | 28,176 KB |
| 最終ジャッジ日時 | 2024-12-27 22:41:26 |
| 合計ジャッジ時間 | 4,045 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 24 TLE * 1 |
ソースコード
n = int(input())
a = list(input().split())
b = list(input().split())
for i in a:
if i in b and a.count(i) == b.count(i):
continue
else:
print(i)
exit()