結果

問題 No.182 新規性の虜
ユーザー wa10ya26wa10ya26
提出日時 2018-07-01 14:29:01
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 63 ms / 5,000 ms
コード長 135 bytes
コンパイル時間 100 ms
コンパイル使用メモリ 10,592 KB
実行使用メモリ 23,628 KB
最終ジャッジ日時 2023-09-13 16:34:51
合計ジャッジ時間 2,672 ms
ジャッジサーバーID
(参考情報)
judge12 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 18 ms
8,372 KB
testcase_01 AC 18 ms
8,432 KB
testcase_02 AC 18 ms
8,436 KB
testcase_03 AC 18 ms
8,472 KB
testcase_04 AC 18 ms
8,388 KB
testcase_05 AC 18 ms
8,448 KB
testcase_06 AC 18 ms
8,508 KB
testcase_07 AC 18 ms
8,544 KB
testcase_08 AC 45 ms
17,144 KB
testcase_09 AC 60 ms
18,728 KB
testcase_10 AC 54 ms
18,736 KB
testcase_11 AC 49 ms
16,468 KB
testcase_12 AC 32 ms
13,032 KB
testcase_13 AC 18 ms
8,364 KB
testcase_14 AC 18 ms
8,376 KB
testcase_15 AC 18 ms
8,288 KB
testcase_16 AC 18 ms
8,364 KB
testcase_17 AC 18 ms
8,484 KB
testcase_18 AC 48 ms
16,644 KB
testcase_19 AC 40 ms
14,444 KB
testcase_20 AC 31 ms
12,036 KB
testcase_21 AC 52 ms
17,856 KB
testcase_22 AC 34 ms
13,036 KB
testcase_23 AC 18 ms
8,436 KB
testcase_24 AC 63 ms
23,628 KB
testcase_25 AC 43 ms
10,336 KB
testcase_26 AC 23 ms
10,328 KB
testcase_27 AC 18 ms
8,508 KB
evil01.txt AC 66 ms
23,688 KB
evil02.txt AC 67 ms
23,608 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter
n = input()
a = [int(i) for i in input().split()]
print(sum([1 for i in Counter(a).values() if i < 2]))
0