結果

問題 No.182 新規性の虜
ユーザー noriocnorioc
提出日時 2024-07-15 09:27:20
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 83 ms / 5,000 ms
コード長 181 bytes
コンパイル時間 320 ms
コンパイル使用メモリ 82,236 KB
実行使用メモリ 99,496 KB
最終ジャッジ日時 2024-07-15 09:27:24
合計ジャッジ時間 3,976 ms
ジャッジサーバーID
(参考情報)
judge4 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,416 KB
testcase_01 AC 39 ms
54,364 KB
testcase_02 AC 40 ms
54,140 KB
testcase_03 AC 41 ms
53,800 KB
testcase_04 AC 39 ms
54,492 KB
testcase_05 AC 40 ms
54,540 KB
testcase_06 AC 50 ms
55,120 KB
testcase_07 AC 38 ms
54,076 KB
testcase_08 AC 66 ms
85,132 KB
testcase_09 AC 80 ms
98,008 KB
testcase_10 AC 76 ms
94,036 KB
testcase_11 AC 69 ms
88,572 KB
testcase_12 AC 54 ms
74,392 KB
testcase_13 AC 38 ms
53,976 KB
testcase_14 AC 38 ms
54,572 KB
testcase_15 AC 40 ms
54,344 KB
testcase_16 AC 39 ms
53,688 KB
testcase_17 AC 39 ms
54,204 KB
testcase_18 AC 64 ms
80,156 KB
testcase_19 AC 59 ms
75,908 KB
testcase_20 AC 54 ms
70,544 KB
testcase_21 AC 64 ms
82,120 KB
testcase_22 AC 54 ms
72,624 KB
testcase_23 AC 39 ms
54,360 KB
testcase_24 AC 83 ms
99,496 KB
testcase_25 AC 61 ms
82,420 KB
testcase_26 AC 47 ms
65,560 KB
testcase_27 AC 39 ms
53,436 KB
evil01.txt AC 80 ms
102,156 KB
evil02.txt AC 81 ms
102,224 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter

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

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

print(ans)
0