結果

問題 No.182 新規性の虜
ユーザー nanaenanae
提出日時 2017-03-17 00:29:20
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 103 ms / 5,000 ms
コード長 177 bytes
コンパイル時間 853 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 24,332 KB
最終ジャッジ日時 2024-12-27 13:01:13
合計ジャッジ時間 3,849 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,240 KB
testcase_01 AC 31 ms
10,368 KB
testcase_02 AC 31 ms
10,368 KB
testcase_03 AC 31 ms
10,240 KB
testcase_04 AC 31 ms
10,368 KB
testcase_05 AC 30 ms
10,240 KB
testcase_06 AC 31 ms
10,368 KB
testcase_07 AC 32 ms
10,368 KB
testcase_08 AC 71 ms
19,084 KB
testcase_09 AC 96 ms
21,116 KB
testcase_10 AC 83 ms
19,804 KB
testcase_11 AC 79 ms
19,628 KB
testcase_12 AC 50 ms
15,144 KB
testcase_13 AC 32 ms
10,240 KB
testcase_14 AC 32 ms
10,368 KB
testcase_15 AC 31 ms
10,496 KB
testcase_16 AC 31 ms
10,368 KB
testcase_17 AC 30 ms
10,368 KB
testcase_18 AC 67 ms
17,708 KB
testcase_19 AC 59 ms
15,524 KB
testcase_20 AC 49 ms
13,696 KB
testcase_21 AC 73 ms
18,844 KB
testcase_22 AC 56 ms
14,356 KB
testcase_23 AC 30 ms
10,496 KB
testcase_24 AC 103 ms
24,332 KB
testcase_25 AC 64 ms
12,224 KB
testcase_26 AC 38 ms
12,160 KB
testcase_27 AC 31 ms
10,496 KB
evil01.txt AC 101 ms
25,612 KB
evil02.txt AC 103 ms
25,676 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter

N = int(input())
A = Counter([int(i) for i in input().split()])

ans = 0

for freq in A.values():
    if freq == 1:
        ans += 1

print(ans)
0