結果

問題 No.182 新規性の虜
ユーザー naoe123naoe123
提出日時 2020-01-14 18:58:30
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 112 ms / 5,000 ms
コード長 177 bytes
コンパイル時間 111 ms
コンパイル使用メモリ 10,712 KB
実行使用メモリ 32,680 KB
最終ジャッジ日時 2023-08-26 23:14:42
合計ジャッジ時間 2,818 ms
ジャッジサーバーID
(参考情報)
judge15 / judge13
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 18 ms
8,604 KB
testcase_01 AC 19 ms
8,496 KB
testcase_02 AC 19 ms
8,604 KB
testcase_03 AC 18 ms
8,524 KB
testcase_04 AC 18 ms
8,520 KB
testcase_05 AC 18 ms
8,616 KB
testcase_06 AC 19 ms
8,552 KB
testcase_07 AC 18 ms
8,520 KB
testcase_08 AC 65 ms
20,228 KB
testcase_09 AC 90 ms
26,180 KB
testcase_10 AC 88 ms
24,852 KB
testcase_11 AC 71 ms
21,856 KB
testcase_12 AC 39 ms
14,524 KB
testcase_13 AC 19 ms
8,624 KB
testcase_14 AC 18 ms
8,472 KB
testcase_15 AC 18 ms
8,500 KB
testcase_16 AC 18 ms
8,588 KB
testcase_17 AC 18 ms
8,572 KB
testcase_18 AC 53 ms
16,880 KB
testcase_19 AC 44 ms
14,276 KB
testcase_20 AC 36 ms
12,308 KB
testcase_21 AC 57 ms
17,964 KB
testcase_22 AC 40 ms
13,608 KB
testcase_23 AC 18 ms
8,424 KB
testcase_24 AC 112 ms
32,680 KB
testcase_25 AC 41 ms
10,428 KB
testcase_26 AC 28 ms
10,548 KB
testcase_27 AC 18 ms
8,496 KB
evil01.txt AC 114 ms
31,492 KB
evil02.txt AC 115 ms
31,488 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import collections
N=int(input())
A=list(map(int,input().split()))

c = collections.Counter(A)

values, counts = zip(*c.most_common())

print(len([i for i in counts if i == 1]))
0