結果
問題 |
No.182 新規性の虜
|
ユーザー |
|
提出日時 | 2022-12-02 07:42:33 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
RE
|
実行時間 | - |
コード長 | 276 bytes |
コンパイル時間 | 212 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 23,120 KB |
最終ジャッジ日時 | 2024-10-09 10:57:43 |
合計ジャッジ時間 | 7,698 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | RE * 3 |
other | RE * 5 TLE * 1 -- * 21 |
ソースコード
N = int(input()) A = list(map(int, input().split())) B = [] C = [] D = [] for i in A: if i not in B: B.append(i) elif i in B: C.append(i) for i in C: if i not in D: D.append(i) for i in D: if i in B: B.remove(i) print(len(i))