結果

問題 No.182 新規性の虜
ユーザー 👑 yumechiyumechi
提出日時 2016-01-19 08:20:53
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 57 ms / 5,000 ms
コード長 112 bytes
コンパイル時間 334 ms
コンパイル使用メモリ 10,628 KB
実行使用メモリ 21,792 KB
最終ジャッジ日時 2023-08-27 09:24:46
合計ジャッジ時間 2,596 ms
ジャッジサーバーID
(参考情報)
judge15 / judge13
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 18 ms
8,436 KB
testcase_01 AC 18 ms
8,276 KB
testcase_02 AC 19 ms
8,380 KB
testcase_03 AC 19 ms
8,356 KB
testcase_04 AC 19 ms
8,356 KB
testcase_05 AC 19 ms
8,252 KB
testcase_06 AC 19 ms
8,336 KB
testcase_07 AC 21 ms
8,332 KB
testcase_08 AC 39 ms
15,388 KB
testcase_09 AC 51 ms
17,628 KB
testcase_10 AC 47 ms
16,832 KB
testcase_11 AC 41 ms
15,996 KB
testcase_12 AC 27 ms
11,360 KB
testcase_13 AC 18 ms
8,388 KB
testcase_14 AC 20 ms
8,384 KB
testcase_15 AC 18 ms
8,320 KB
testcase_16 AC 19 ms
8,304 KB
testcase_17 AC 18 ms
8,384 KB
testcase_18 AC 38 ms
13,960 KB
testcase_19 AC 33 ms
12,344 KB
testcase_20 AC 27 ms
10,956 KB
testcase_21 AC 40 ms
14,592 KB
testcase_22 AC 29 ms
11,396 KB
testcase_23 AC 18 ms
8,500 KB
testcase_24 AC 57 ms
21,792 KB
testcase_25 AC 28 ms
9,400 KB
testcase_26 AC 22 ms
9,492 KB
testcase_27 AC 19 ms
8,300 KB
evil01.txt AC 62 ms
22,672 KB
evil02.txt AC 60 ms
22,656 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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