結果

問題 No.182 新規性の虜
ユーザー fmhrfmhr
提出日時 2015-04-16 23:27:41
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 74 ms / 5,000 ms
コード長 172 bytes
コンパイル時間 1,204 ms
コンパイル使用メモリ 10,660 KB
実行使用メモリ 26,364 KB
最終ジャッジ日時 2023-08-27 07:06:20
合計ジャッジ時間 2,600 ms
ジャッジサーバーID
(参考情報)
judge12 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 19 ms
8,424 KB
testcase_01 AC 19 ms
8,536 KB
testcase_02 AC 19 ms
8,532 KB
testcase_03 AC 19 ms
8,492 KB
testcase_04 AC 19 ms
8,568 KB
testcase_05 AC 18 ms
8,536 KB
testcase_06 AC 19 ms
8,432 KB
testcase_07 AC 18 ms
8,500 KB
testcase_08 AC 52 ms
17,864 KB
testcase_09 AC 72 ms
20,876 KB
testcase_10 AC 63 ms
19,984 KB
testcase_11 AC 57 ms
17,908 KB
testcase_12 AC 35 ms
13,232 KB
testcase_13 AC 19 ms
8,448 KB
testcase_14 AC 18 ms
8,592 KB
testcase_15 AC 19 ms
8,540 KB
testcase_16 AC 19 ms
8,544 KB
testcase_17 AC 19 ms
8,536 KB
testcase_18 AC 48 ms
14,484 KB
testcase_19 AC 38 ms
12,956 KB
testcase_20 AC 31 ms
11,324 KB
testcase_21 AC 51 ms
15,156 KB
testcase_22 AC 35 ms
12,028 KB
testcase_23 AC 18 ms
8,572 KB
testcase_24 AC 74 ms
26,364 KB
testcase_25 AC 41 ms
9,756 KB
testcase_26 AC 25 ms
9,976 KB
testcase_27 AC 18 ms
8,588 KB
evil01.txt AC 74 ms
27,584 KB
evil02.txt AC 79 ms
27,392 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter
n = int(input())
a = Counter(map(int, input().split()))
ans = []
for k, v in a.items():
    if v == 1:
        ans.append(k)
print(len(ans))
0