結果

問題 No.182 新規性の虜
ユーザー 2329 N2329 N
提出日時 2020-09-05 19:22:21
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 51 ms / 5,000 ms
コード長 139 bytes
コンパイル時間 1,206 ms
コンパイル使用メモリ 10,680 KB
実行使用メモリ 23,188 KB
最終ジャッジ日時 2023-08-19 12:56:11
合計ジャッジ時間 3,773 ms
ジャッジサーバーID
(参考情報)
judge11 / judge10
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 15 ms
8,432 KB
testcase_01 AC 15 ms
8,508 KB
testcase_02 AC 15 ms
8,544 KB
testcase_03 AC 14 ms
8,524 KB
testcase_04 AC 15 ms
8,576 KB
testcase_05 AC 16 ms
8,512 KB
testcase_06 AC 15 ms
8,476 KB
testcase_07 AC 16 ms
8,392 KB
testcase_08 AC 39 ms
16,972 KB
testcase_09 AC 49 ms
18,892 KB
testcase_10 AC 44 ms
18,680 KB
testcase_11 AC 40 ms
16,624 KB
testcase_12 AC 26 ms
12,952 KB
testcase_13 AC 16 ms
8,440 KB
testcase_14 AC 15 ms
8,468 KB
testcase_15 AC 16 ms
8,524 KB
testcase_16 AC 16 ms
8,536 KB
testcase_17 AC 14 ms
8,532 KB
testcase_18 AC 41 ms
16,756 KB
testcase_19 AC 34 ms
14,368 KB
testcase_20 AC 26 ms
12,360 KB
testcase_21 AC 43 ms
17,952 KB
testcase_22 AC 29 ms
12,980 KB
testcase_23 AC 15 ms
8,472 KB
testcase_24 AC 51 ms
23,188 KB
testcase_25 AC 37 ms
10,316 KB
testcase_26 AC 21 ms
10,176 KB
testcase_27 AC 16 ms
8,464 KB
evil01.txt AC 53 ms
23,256 KB
evil02.txt AC 53 ms
23,308 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import collections

n = int(input())
a = list(map(int, input().split()))
c = collections.Counter(a)
d = list(c.values())

print(d.count(1))
0