結果

問題 No.182 新規性の虜
ユーザー tnodinotnodino
提出日時 2022-07-10 11:54:36
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 97 ms / 5,000 ms
コード長 189 bytes
コンパイル時間 162 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 25,468 KB
最終ジャッジ日時 2024-06-10 21:55:13
合計ジャッジ時間 3,367 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
10,752 KB
testcase_01 AC 37 ms
10,752 KB
testcase_02 AC 37 ms
10,752 KB
testcase_03 AC 25 ms
10,624 KB
testcase_04 AC 29 ms
10,752 KB
testcase_05 AC 25 ms
10,624 KB
testcase_06 AC 24 ms
10,624 KB
testcase_07 AC 26 ms
10,624 KB
testcase_08 AC 67 ms
19,580 KB
testcase_09 AC 91 ms
21,280 KB
testcase_10 AC 83 ms
20,176 KB
testcase_11 AC 73 ms
19,880 KB
testcase_12 AC 47 ms
15,528 KB
testcase_13 AC 26 ms
10,752 KB
testcase_14 AC 24 ms
10,624 KB
testcase_15 AC 25 ms
10,752 KB
testcase_16 AC 25 ms
10,624 KB
testcase_17 AC 25 ms
10,752 KB
testcase_18 AC 72 ms
18,084 KB
testcase_19 AC 60 ms
15,896 KB
testcase_20 AC 47 ms
13,952 KB
testcase_21 AC 71 ms
18,968 KB
testcase_22 AC 52 ms
14,724 KB
testcase_23 AC 24 ms
10,624 KB
testcase_24 AC 97 ms
25,468 KB
testcase_25 AC 66 ms
12,640 KB
testcase_26 AC 34 ms
12,544 KB
testcase_27 AC 25 ms
10,624 KB
evil01.txt AC 98 ms
25,984 KB
evil02.txt AC 105 ms
25,920 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict
N = int(input())
A = list(map(int,input().split()))
cnt = defaultdict(int)
for i in range(N):
    cnt[A[i]] += 1
v = list(cnt.values())
print(v.count(1))
0