結果

問題 No.182 新規性の虜
ユーザー wata_pythonwata_python
提出日時 2019-08-17 15:47:17
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 75 ms / 5,000 ms
コード長 143 bytes
コンパイル時間 210 ms
コンパイル使用メモリ 11,660 KB
実行使用メモリ 24,156 KB
最終ジャッジ日時 2023-10-25 00:54:05
合計ジャッジ時間 2,783 ms
ジャッジサーバーID
(参考情報)
judge12 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,004 KB
testcase_01 AC 31 ms
10,004 KB
testcase_02 AC 30 ms
10,004 KB
testcase_03 AC 29 ms
10,004 KB
testcase_04 AC 29 ms
10,004 KB
testcase_05 AC 29 ms
10,004 KB
testcase_06 AC 29 ms
10,004 KB
testcase_07 AC 30 ms
10,004 KB
testcase_08 AC 56 ms
18,508 KB
testcase_09 AC 71 ms
19,412 KB
testcase_10 AC 65 ms
19,184 KB
testcase_11 AC 59 ms
19,244 KB
testcase_12 AC 42 ms
14,556 KB
testcase_13 AC 29 ms
10,004 KB
testcase_14 AC 29 ms
10,004 KB
testcase_15 AC 30 ms
10,004 KB
testcase_16 AC 30 ms
10,004 KB
testcase_17 AC 29 ms
10,004 KB
testcase_18 AC 59 ms
18,244 KB
testcase_19 AC 52 ms
15,956 KB
testcase_20 AC 44 ms
13,820 KB
testcase_21 AC 66 ms
19,420 KB
testcase_22 AC 46 ms
14,540 KB
testcase_23 AC 30 ms
10,004 KB
testcase_24 AC 75 ms
24,156 KB
testcase_25 AC 53 ms
11,808 KB
testcase_26 AC 34 ms
11,632 KB
testcase_27 AC 28 ms
10,004 KB
evil01.txt AC 79 ms
25,016 KB
evil02.txt AC 81 ms
25,016 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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