結果
| 問題 | 
                            No.1468 Colourful Pastel
                             | 
                    
| ユーザー | 
                             | 
                    
| 提出日時 | 2021-04-04 13:09:14 | 
| 言語 | Python3  (3.13.1 + numpy 2.2.1 + scipy 1.14.1)  | 
                    
| 結果 | 
                             
                                TLE
                                 
                             
                            
                         | 
                    
| 実行時間 | - | 
| コード長 | 184 bytes | 
| コンパイル時間 | 351 ms | 
| コンパイル使用メモリ | 12,416 KB | 
| 実行使用メモリ | 28,316 KB | 
| 最終ジャッジ日時 | 2024-12-27 22:42:09 | 
| 合計ジャッジ時間 | 4,141 ms | 
| 
                            ジャッジサーバーID (参考情報)  | 
                        judge3 / 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()