結果

問題 No.182 新規性の虜
ユーザー wata_pythonwata_python
提出日時 2019-08-17 15:47:17
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 71 ms / 5,000 ms
コード長 143 bytes
コンパイル時間 250 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 25,360 KB
最終ジャッジ日時 2024-09-24 19:56:23
合計ジャッジ時間 2,767 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,624 KB
testcase_01 AC 27 ms
10,624 KB
testcase_02 AC 27 ms
10,752 KB
testcase_03 AC 27 ms
10,624 KB
testcase_04 AC 27 ms
10,624 KB
testcase_05 AC 28 ms
10,752 KB
testcase_06 AC 28 ms
10,624 KB
testcase_07 AC 27 ms
10,624 KB
testcase_08 AC 53 ms
19,676 KB
testcase_09 AC 69 ms
21,276 KB
testcase_10 AC 62 ms
20,160 KB
testcase_11 AC 59 ms
20,032 KB
testcase_12 AC 42 ms
15,516 KB
testcase_13 AC 27 ms
10,624 KB
testcase_14 AC 28 ms
10,624 KB
testcase_15 AC 28 ms
10,624 KB
testcase_16 AC 27 ms
10,624 KB
testcase_17 AC 26 ms
10,624 KB
testcase_18 AC 56 ms
17,956 KB
testcase_19 AC 48 ms
16,128 KB
testcase_20 AC 39 ms
13,952 KB
testcase_21 AC 61 ms
18,964 KB
testcase_22 AC 47 ms
14,720 KB
testcase_23 AC 28 ms
10,624 KB
testcase_24 AC 71 ms
25,360 KB
testcase_25 AC 53 ms
12,636 KB
testcase_26 AC 33 ms
12,416 KB
testcase_27 AC 28 ms
10,752 KB
evil01.txt AC 76 ms
26,108 KB
evil02.txt AC 79 ms
25,936 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