結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 19 ms
8,588 KB
testcase_01 AC 18 ms
8,456 KB
testcase_02 AC 18 ms
8,608 KB
testcase_03 AC 18 ms
8,620 KB
testcase_04 AC 18 ms
8,464 KB
testcase_05 AC 18 ms
8,524 KB
testcase_06 AC 18 ms
8,524 KB
testcase_07 AC 18 ms
8,488 KB
testcase_08 AC 60 ms
17,156 KB
testcase_09 AC 88 ms
20,872 KB
testcase_10 AC 77 ms
19,556 KB
testcase_11 AC 70 ms
18,340 KB
testcase_12 AC 39 ms
13,000 KB
testcase_13 AC 18 ms
8,640 KB
testcase_14 AC 19 ms
8,536 KB
testcase_15 AC 19 ms
8,660 KB
testcase_16 AC 18 ms
8,476 KB
testcase_17 AC 18 ms
8,540 KB
testcase_18 AC 52 ms
16,848 KB
testcase_19 AC 44 ms
14,276 KB
testcase_20 AC 35 ms
12,388 KB
testcase_21 AC 57 ms
18,028 KB
testcase_22 AC 39 ms
13,016 KB
testcase_23 AC 19 ms
8,452 KB
testcase_24 AC 100 ms
25,712 KB
testcase_25 AC 41 ms
10,376 KB
testcase_26 AC 27 ms
10,304 KB
testcase_27 AC 19 ms
8,656 KB
evil01.txt AC 105 ms
25,564 KB
evil02.txt AC 106 ms
25,468 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