結果

問題 No.182 新規性の虜
ユーザー hiro_metal_core
提出日時 2017-12-02 22:42:22
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
TLE  
実行時間 -
コード長 155 bytes
コンパイル時間 84 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 33,520 KB
最終ジャッジ日時 2024-11-28 03:53:33
合計ジャッジ時間 82,027 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 14 TLE * 13
権限があれば一括ダウンロードができます

ソースコード

diff #

N = input()
A = list(map(int, input().split()))

new_num = 0

a_set = set(A)

for a in a_set:
    if A.count(a) == 1:
        new_num += 1

print(new_num)
0