結果

問題 No.182 新規性の虜
ユーザー panapanagdfpanapanagdf
提出日時 2019-09-20 10:23:27
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 78 ms / 5,000 ms
コード長 130 bytes
コンパイル時間 94 ms
コンパイル使用メモリ 10,692 KB
実行使用メモリ 21,980 KB
最終ジャッジ日時 2023-10-11 21:20:42
合計ジャッジ時間 2,383 ms
ジャッジサーバーID
(参考情報)
judge14 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 18 ms
8,396 KB
testcase_01 AC 18 ms
8,520 KB
testcase_02 AC 17 ms
8,576 KB
testcase_03 AC 18 ms
8,504 KB
testcase_04 AC 18 ms
8,392 KB
testcase_05 AC 18 ms
8,424 KB
testcase_06 AC 18 ms
8,436 KB
testcase_07 AC 18 ms
8,420 KB
testcase_08 AC 46 ms
15,572 KB
testcase_09 AC 69 ms
17,936 KB
testcase_10 AC 62 ms
17,200 KB
testcase_11 AC 52 ms
16,176 KB
testcase_12 AC 32 ms
11,592 KB
testcase_13 AC 18 ms
8,428 KB
testcase_14 AC 19 ms
8,432 KB
testcase_15 AC 18 ms
8,392 KB
testcase_16 AC 19 ms
8,504 KB
testcase_17 AC 18 ms
8,424 KB
testcase_18 AC 39 ms
14,164 KB
testcase_19 AC 34 ms
12,508 KB
testcase_20 AC 28 ms
11,024 KB
testcase_21 AC 42 ms
14,732 KB
testcase_22 AC 30 ms
11,592 KB
testcase_23 AC 18 ms
8,420 KB
testcase_24 AC 78 ms
21,980 KB
testcase_25 AC 28 ms
9,636 KB
testcase_26 AC 24 ms
9,592 KB
testcase_27 AC 18 ms
8,440 KB
evil01.txt AC 80 ms
22,680 KB
evil02.txt AC 77 ms
22,852 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import collections
a=int(input())
b=input().split()
d=collections.Counter(b)
e=0
for i in d:
    if d[i]==1:
        e+=1
print(e)
0