結果

問題 No.182 新規性の虜
ユーザー shobonvipshobonvip
提出日時 2020-05-10 16:31:28
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 104 ms / 5,000 ms
コード長 174 bytes
コンパイル時間 95 ms
コンパイル使用メモリ 10,692 KB
実行使用メモリ 25,628 KB
最終ジャッジ日時 2023-09-22 04:13:55
合計ジャッジ時間 3,159 ms
ジャッジサーバーID
(参考情報)
judge15 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 19 ms
8,456 KB
testcase_01 AC 20 ms
8,404 KB
testcase_02 AC 20 ms
8,624 KB
testcase_03 AC 20 ms
8,516 KB
testcase_04 AC 20 ms
8,580 KB
testcase_05 AC 19 ms
8,628 KB
testcase_06 AC 20 ms
8,596 KB
testcase_07 AC 20 ms
8,408 KB
testcase_08 AC 63 ms
17,072 KB
testcase_09 AC 90 ms
20,768 KB
testcase_10 AC 78 ms
19,580 KB
testcase_11 AC 71 ms
18,424 KB
testcase_12 AC 41 ms
12,960 KB
testcase_13 AC 21 ms
8,444 KB
testcase_14 AC 20 ms
8,424 KB
testcase_15 AC 20 ms
8,452 KB
testcase_16 AC 22 ms
8,584 KB
testcase_17 AC 20 ms
8,448 KB
testcase_18 AC 57 ms
16,644 KB
testcase_19 AC 47 ms
14,360 KB
testcase_20 AC 37 ms
12,228 KB
testcase_21 AC 60 ms
17,884 KB
testcase_22 AC 41 ms
13,136 KB
testcase_23 AC 20 ms
8,580 KB
testcase_24 AC 104 ms
25,628 KB
testcase_25 AC 43 ms
10,252 KB
testcase_26 AC 28 ms
10,208 KB
testcase_27 AC 20 ms
8,572 KB
evil01.txt AC 106 ms
25,368 KB
evil02.txt AC 112 ms
25,412 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import collections
n = int(input())
a = list(map(int,input().split()))
c = collections.Counter(a)
cnt = 0
for i,j in c.most_common():
    if j==1:
        cnt += 1
print(cnt)
0