結果

問題 No.182 新規性の虜
ユーザー iad_2889
提出日時 2019-05-02 03:40:12
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
TLE  
実行時間 -
コード長 179 bytes
コンパイル時間 252 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 30,572 KB
最終ジャッジ日時 2024-12-31 12:58:06
合計ジャッジ時間 84,369 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 14 TLE * 13
権限があれば一括ダウンロードができます

ソースコード

diff #

input()
nums = [int(x) for x in input().split()]
num_type = set(nums)
newly = 0

for num in num_type:
    if len([x for x in nums if x == num]) == 1:
        newly+=1
print(newly)
0