結果

問題 No.182 新規性の虜
ユーザー yumechiyumechi
提出日時 2016-01-19 08:20:53
言語 Python3
(3.10.1 + numpy 1.22.3 + scipy 1.8.0)
結果
AC  
実行時間 51 ms / 5,000 ms
コード長 112 bytes
コンパイル時間 61 ms
使用メモリ 23,172 KB
最終ジャッジ日時 2023-01-15 04:45:09
合計ジャッジ時間 2,373 ms
ジャッジサーバーID
(参考情報)
judge14 / judge11
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
使用メモリ
testcase_00 AC 18 ms
7,772 KB
testcase_01 AC 18 ms
7,824 KB
testcase_02 AC 17 ms
7,764 KB
testcase_03 AC 17 ms
7,756 KB
testcase_04 AC 19 ms
7,860 KB
testcase_05 AC 18 ms
7,728 KB
testcase_06 AC 17 ms
7,724 KB
testcase_07 AC 17 ms
7,752 KB
testcase_08 AC 35 ms
15,832 KB
testcase_09 AC 46 ms
18,472 KB
testcase_10 AC 42 ms
18,072 KB
testcase_11 AC 40 ms
15,788 KB
testcase_12 AC 26 ms
11,776 KB
testcase_13 AC 17 ms
7,768 KB
testcase_14 AC 17 ms
7,700 KB
testcase_15 AC 17 ms
7,756 KB
testcase_16 AC 18 ms
7,856 KB
testcase_17 AC 17 ms
7,752 KB
testcase_18 AC 35 ms
13,612 KB
testcase_19 AC 30 ms
12,072 KB
testcase_20 AC 26 ms
10,748 KB
testcase_21 AC 38 ms
14,456 KB
testcase_22 AC 27 ms
11,244 KB
testcase_23 AC 18 ms
7,880 KB
testcase_24 AC 51 ms
23,172 KB
testcase_25 AC 25 ms
9,040 KB
testcase_26 AC 20 ms
9,164 KB
testcase_27 AC 17 ms
7,888 KB
evil01.txt AC 52 ms
23,900 KB
evil02.txt AC 52 ms
23,892 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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