結果

問題 No.182 新規性の虜
ユーザー rinmao_catloverrinmao_catlover
提出日時 2020-07-05 19:25:56
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 86 ms / 5,000 ms
コード長 175 bytes
コンパイル時間 229 ms
コンパイル使用メモリ 11,808 KB
実行使用メモリ 24,292 KB
最終ジャッジ日時 2023-10-24 01:41:57
合計ジャッジ時間 3,441 ms
ジャッジサーバーID
(参考情報)
judge13 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,148 KB
testcase_01 AC 29 ms
10,148 KB
testcase_02 AC 28 ms
10,148 KB
testcase_03 AC 28 ms
10,148 KB
testcase_04 AC 29 ms
10,148 KB
testcase_05 AC 29 ms
10,148 KB
testcase_06 AC 28 ms
10,148 KB
testcase_07 AC 28 ms
10,148 KB
testcase_08 AC 61 ms
18,644 KB
testcase_09 AC 81 ms
19,548 KB
testcase_10 AC 74 ms
19,320 KB
testcase_11 AC 65 ms
19,384 KB
testcase_12 AC 45 ms
14,692 KB
testcase_13 AC 29 ms
10,148 KB
testcase_14 AC 28 ms
10,148 KB
testcase_15 AC 28 ms
10,148 KB
testcase_16 AC 28 ms
10,148 KB
testcase_17 AC 28 ms
10,148 KB
testcase_18 AC 58 ms
18,380 KB
testcase_19 AC 50 ms
16,092 KB
testcase_20 AC 41 ms
13,964 KB
testcase_21 AC 62 ms
19,560 KB
testcase_22 AC 45 ms
14,680 KB
testcase_23 AC 28 ms
10,148 KB
testcase_24 AC 86 ms
24,292 KB
testcase_25 AC 52 ms
11,948 KB
testcase_26 AC 35 ms
11,764 KB
testcase_27 AC 28 ms
10,148 KB
evil01.txt AC 91 ms
25,152 KB
evil02.txt AC 93 ms
25,152 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter

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

C = Counter(A)
ans = 0
for x,y in C.items():
    if y == 1:
        ans += 1

print(ans)
0