結果

問題 No.182 新規性の虜
ユーザー titiatitia
提出日時 2022-05-09 02:26:48
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 81 ms / 5,000 ms
コード長 154 bytes
コンパイル時間 97 ms
コンパイル使用メモリ 10,680 KB
実行使用メモリ 22,504 KB
最終ジャッジ日時 2023-09-23 03:16:32
合計ジャッジ時間 3,504 ms
ジャッジサーバーID
(参考情報)
judge12 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 19 ms
8,408 KB
testcase_01 AC 19 ms
8,488 KB
testcase_02 AC 18 ms
8,588 KB
testcase_03 AC 20 ms
8,556 KB
testcase_04 AC 18 ms
8,364 KB
testcase_05 AC 19 ms
8,528 KB
testcase_06 AC 19 ms
8,508 KB
testcase_07 AC 19 ms
8,448 KB
testcase_08 AC 56 ms
16,916 KB
testcase_09 AC 79 ms
18,816 KB
testcase_10 AC 71 ms
18,704 KB
testcase_11 AC 60 ms
18,584 KB
testcase_12 AC 36 ms
12,964 KB
testcase_13 AC 19 ms
8,580 KB
testcase_14 AC 19 ms
8,548 KB
testcase_15 AC 18 ms
8,416 KB
testcase_16 AC 18 ms
8,552 KB
testcase_17 AC 18 ms
8,364 KB
testcase_18 AC 49 ms
16,400 KB
testcase_19 AC 41 ms
14,040 KB
testcase_20 AC 33 ms
12,040 KB
testcase_21 AC 54 ms
17,500 KB
testcase_22 AC 36 ms
13,020 KB
testcase_23 AC 19 ms
8,496 KB
testcase_24 AC 81 ms
22,504 KB
testcase_25 AC 42 ms
10,036 KB
testcase_26 AC 26 ms
9,932 KB
testcase_27 AC 19 ms
8,548 KB
evil01.txt AC 84 ms
23,292 KB
evil02.txt AC 89 ms
23,272 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

from collections import Counter
C=Counter(A)
ANS=0
for c in C:
    if C[c]==1:
        ANS+=1

print(ANS)
0