結果

問題 No.182 新規性の虜
ユーザー panapanagdf
提出日時 2019-09-19 23:10:27
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
TLE  
実行時間 -
コード長 119 bytes
コンパイル時間 93 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 24,952 KB
最終ジャッジ日時 2024-07-21 07:42:04
合計ジャッジ時間 7,063 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 5 TLE * 1 -- * 21
権限があれば一括ダウンロードができます

ソースコード

diff #

a=int(input())
b=[int(i) for i in input().split()]
c=set(b)
d=0
for i in c:
    if b.count(i)==1:
        d+=1
print(d)
0