結果

問題 No.182 新規性の虜
ユーザー gr1msl3ygr1msl3y
提出日時 2021-11-03 19:52:54
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 96 ms / 5,000 ms
コード長 152 bytes
コンパイル時間 178 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 98,816 KB
最終ジャッジ日時 2024-04-21 12:28:00
合計ジャッジ時間 3,192 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
53,120 KB
testcase_01 AC 46 ms
53,120 KB
testcase_02 AC 45 ms
53,120 KB
testcase_03 AC 47 ms
53,248 KB
testcase_04 AC 46 ms
53,376 KB
testcase_05 AC 53 ms
53,760 KB
testcase_06 AC 46 ms
53,632 KB
testcase_07 AC 46 ms
53,376 KB
testcase_08 AC 81 ms
83,456 KB
testcase_09 AC 96 ms
97,152 KB
testcase_10 AC 91 ms
93,156 KB
testcase_11 AC 84 ms
86,400 KB
testcase_12 AC 66 ms
71,552 KB
testcase_13 AC 46 ms
53,632 KB
testcase_14 AC 46 ms
53,248 KB
testcase_15 AC 45 ms
52,992 KB
testcase_16 AC 46 ms
53,376 KB
testcase_17 AC 46 ms
53,248 KB
testcase_18 AC 81 ms
80,384 KB
testcase_19 AC 75 ms
75,520 KB
testcase_20 AC 67 ms
70,400 KB
testcase_21 AC 79 ms
82,176 KB
testcase_22 AC 68 ms
72,576 KB
testcase_23 AC 46 ms
53,120 KB
testcase_24 AC 95 ms
98,816 KB
testcase_25 AC 74 ms
80,440 KB
testcase_26 AC 58 ms
64,896 KB
testcase_27 AC 45 ms
53,376 KB
evil01.txt AC 99 ms
102,272 KB
evil02.txt AC 100 ms
102,392 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter
N=int(input())
A=list(map(int,input().split()))
C=Counter(A)
ans=0
for a in C:
    if C[a]<2:
        ans+=1
print(ans)
0