結果

問題 No.182 新規性の虜
ユーザー gr1msl3ygr1msl3y
提出日時 2021-11-03 19:52:54
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 82 ms / 5,000 ms
コード長 152 bytes
コンパイル時間 162 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 99,180 KB
最終ジャッジ日時 2024-10-13 10:55:13
合計ジャッジ時間 2,827 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
53,504 KB
testcase_01 AC 41 ms
53,376 KB
testcase_02 AC 39 ms
53,632 KB
testcase_03 AC 38 ms
53,404 KB
testcase_04 AC 41 ms
53,376 KB
testcase_05 AC 40 ms
53,376 KB
testcase_06 AC 40 ms
53,504 KB
testcase_07 AC 38 ms
53,376 KB
testcase_08 AC 80 ms
83,840 KB
testcase_09 AC 82 ms
97,408 KB
testcase_10 AC 76 ms
93,056 KB
testcase_11 AC 70 ms
86,912 KB
testcase_12 AC 54 ms
71,552 KB
testcase_13 AC 38 ms
53,632 KB
testcase_14 AC 37 ms
53,504 KB
testcase_15 AC 38 ms
53,376 KB
testcase_16 AC 38 ms
53,632 KB
testcase_17 AC 39 ms
53,760 KB
testcase_18 AC 63 ms
80,768 KB
testcase_19 AC 59 ms
75,904 KB
testcase_20 AC 53 ms
70,656 KB
testcase_21 AC 63 ms
82,176 KB
testcase_22 AC 55 ms
72,832 KB
testcase_23 AC 37 ms
53,376 KB
testcase_24 AC 78 ms
99,180 KB
testcase_25 AC 61 ms
80,384 KB
testcase_26 AC 48 ms
65,024 KB
testcase_27 AC 43 ms
53,376 KB
evil01.txt AC 88 ms
102,244 KB
evil02.txt AC 83 ms
102,528 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