結果

問題 No.182 新規性の虜
ユーザー shimonohnishishimonohnishi
提出日時 2024-11-04 13:39:04
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 82 ms / 5,000 ms
コード長 154 bytes
コンパイル時間 515 ms
コンパイル使用メモリ 82,528 KB
実行使用メモリ 99,868 KB
最終ジャッジ日時 2024-11-04 13:39:09
合計ジャッジ時間 3,767 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
54,304 KB
testcase_01 AC 42 ms
53,568 KB
testcase_02 AC 40 ms
53,748 KB
testcase_03 AC 40 ms
54,336 KB
testcase_04 AC 41 ms
54,596 KB
testcase_05 AC 39 ms
53,440 KB
testcase_06 AC 40 ms
54,048 KB
testcase_07 AC 39 ms
53,688 KB
testcase_08 AC 68 ms
85,188 KB
testcase_09 AC 82 ms
98,520 KB
testcase_10 AC 77 ms
94,648 KB
testcase_11 AC 70 ms
88,088 KB
testcase_12 AC 56 ms
72,324 KB
testcase_13 AC 39 ms
53,488 KB
testcase_14 AC 39 ms
54,464 KB
testcase_15 AC 40 ms
53,868 KB
testcase_16 AC 39 ms
53,916 KB
testcase_17 AC 44 ms
54,352 KB
testcase_18 AC 64 ms
79,916 KB
testcase_19 AC 60 ms
76,452 KB
testcase_20 AC 57 ms
72,052 KB
testcase_21 AC 65 ms
81,892 KB
testcase_22 AC 55 ms
73,220 KB
testcase_23 AC 39 ms
53,700 KB
testcase_24 AC 81 ms
99,868 KB
testcase_25 AC 62 ms
80,820 KB
testcase_26 AC 50 ms
66,840 KB
testcase_27 AC 40 ms
55,316 KB
evil01.txt AC 83 ms
102,840 KB
evil02.txt AC 86 ms
102,472 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter
N = int(input())
A = list(map(int, input().split()))

C = Counter(A)
ans = sum(1 for c in C.values() if c == 1)
print(ans)
0