結果

問題 No.182 新規性の虜
ユーザー NeochiNeochi
提出日時 2017-07-05 21:48:32
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 127 ms / 5,000 ms
コード長 229 bytes
コンパイル時間 118 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 27,964 KB
最終ジャッジ日時 2024-06-08 11:15:25
合計ジャッジ時間 2,938 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,624 KB
testcase_01 AC 30 ms
10,624 KB
testcase_02 AC 35 ms
10,624 KB
testcase_03 AC 30 ms
10,624 KB
testcase_04 AC 30 ms
10,496 KB
testcase_05 AC 30 ms
10,624 KB
testcase_06 AC 30 ms
10,752 KB
testcase_07 AC 31 ms
10,624 KB
testcase_08 AC 78 ms
19,584 KB
testcase_09 AC 127 ms
23,136 KB
testcase_10 AC 98 ms
21,852 KB
testcase_11 AC 86 ms
20,616 KB
testcase_12 AC 56 ms
15,644 KB
testcase_13 AC 30 ms
10,496 KB
testcase_14 AC 30 ms
10,624 KB
testcase_15 AC 31 ms
10,624 KB
testcase_16 AC 30 ms
10,624 KB
testcase_17 AC 30 ms
10,624 KB
testcase_18 AC 69 ms
17,828 KB
testcase_19 AC 58 ms
15,900 KB
testcase_20 AC 49 ms
13,952 KB
testcase_21 AC 74 ms
18,836 KB
testcase_22 AC 53 ms
14,856 KB
testcase_23 AC 30 ms
10,496 KB
testcase_24 AC 123 ms
27,964 KB
testcase_25 AC 59 ms
12,604 KB
testcase_26 AC 40 ms
12,288 KB
testcase_27 AC 31 ms
10,624 KB
evil01.txt AC 128 ms
27,584 KB
evil02.txt AC 129 ms
27,768 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import collections
M = int(input())
N = list(map(int, input().split(" ")))
count = collections.Counter(N).most_common()
length = int(len(count))
num = 0
for i in range(length):
    if count[i][1] == 1:
        num += 1
print(num)
0