結果

問題 No.182 新規性の虜
ユーザー panapanagdf
提出日時 2019-09-20 09:38:43
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
実行時間 -
コード長 111 bytes
コンパイル時間 292 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 23,724 KB
最終ジャッジ日時 2024-09-13 20:12:18
合計ジャッジ時間 7,251 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1 WA * 1 RE * 1
other RE * 5 TLE * 1 -- * 21
権限があれば一括ダウンロードができます

ソースコード

diff #

a=int(input())
b=input().split()
c=set(b)
d=0
for i,j in enumerate(c):
    if j in b:
        del b[i]
print(d)
0