結果

問題 No.182 新規性の虜
ユーザー minezumu
提出日時 2018-07-23 19:24:47
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
TLE  
実行時間 -
コード長 159 bytes
コンパイル時間 115 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 32,232 KB
最終ジャッジ日時 2024-12-30 01:54:36
合計ジャッジ時間 88,151 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 13 TLE * 14
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = list(map(int,input().split()))
counter = 0
for i in range(N) :
    b = A.count(A[i])
    if b == 1 :
        counter += 1
print(counter)

0