結果

問題 No.182 新規性の虜
ユーザー nisizawanisizawa
提出日時 2017-12-20 07:23:58
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 64 ms / 5,000 ms
コード長 157 bytes
コンパイル時間 108 ms
コンパイル使用メモリ 10,704 KB
実行使用メモリ 23,368 KB
最終ジャッジ日時 2023-08-27 16:57:53
合計ジャッジ時間 2,211 ms
ジャッジサーバーID
(参考情報)
judge12 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 18 ms
8,492 KB
testcase_01 AC 18 ms
8,452 KB
testcase_02 AC 17 ms
8,420 KB
testcase_03 AC 17 ms
8,388 KB
testcase_04 AC 18 ms
8,612 KB
testcase_05 AC 17 ms
8,576 KB
testcase_06 AC 17 ms
8,456 KB
testcase_07 AC 17 ms
8,424 KB
testcase_08 AC 43 ms
17,188 KB
testcase_09 AC 59 ms
18,872 KB
testcase_10 AC 52 ms
18,780 KB
testcase_11 AC 47 ms
16,760 KB
testcase_12 AC 29 ms
13,084 KB
testcase_13 AC 18 ms
8,528 KB
testcase_14 AC 18 ms
8,528 KB
testcase_15 AC 17 ms
8,456 KB
testcase_16 AC 17 ms
8,628 KB
testcase_17 AC 17 ms
8,576 KB
testcase_18 AC 47 ms
16,728 KB
testcase_19 AC 37 ms
14,312 KB
testcase_20 AC 30 ms
12,272 KB
testcase_21 AC 51 ms
18,020 KB
testcase_22 AC 33 ms
13,072 KB
testcase_23 AC 17 ms
8,528 KB
testcase_24 AC 64 ms
23,368 KB
testcase_25 AC 43 ms
10,352 KB
testcase_26 AC 23 ms
10,036 KB
testcase_27 AC 18 ms
8,472 KB
evil01.txt AC 64 ms
23,424 KB
evil02.txt AC 66 ms
23,276 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter

n = int(input())
a_ls = [int(a) for a in input().split()]

ct = Counter(a_ls)
print(len([c for c in ct.values() if c == 1]))
0