結果

問題 No.182 新規性の虜
ユーザー panapanagdfpanapanagdf
提出日時 2019-09-20 10:23:27
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 90 ms / 5,000 ms
コード長 130 bytes
コンパイル時間 148 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 22,788 KB
最終ジャッジ日時 2024-09-13 20:13:14
合計ジャッジ時間 2,691 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,624 KB
testcase_01 AC 30 ms
10,624 KB
testcase_02 AC 30 ms
10,752 KB
testcase_03 AC 29 ms
10,624 KB
testcase_04 AC 29 ms
10,624 KB
testcase_05 AC 30 ms
10,496 KB
testcase_06 AC 29 ms
10,496 KB
testcase_07 AC 29 ms
10,624 KB
testcase_08 AC 60 ms
17,760 KB
testcase_09 AC 86 ms
20,108 KB
testcase_10 AC 76 ms
19,316 KB
testcase_11 AC 66 ms
18,416 KB
testcase_12 AC 45 ms
13,948 KB
testcase_13 AC 30 ms
10,624 KB
testcase_14 AC 30 ms
10,496 KB
testcase_15 AC 30 ms
10,496 KB
testcase_16 AC 30 ms
10,624 KB
testcase_17 AC 30 ms
10,752 KB
testcase_18 AC 51 ms
15,440 KB
testcase_19 AC 45 ms
14,064 KB
testcase_20 AC 39 ms
12,672 KB
testcase_21 AC 53 ms
15,616 KB
testcase_22 AC 41 ms
13,184 KB
testcase_23 AC 30 ms
10,624 KB
testcase_24 AC 90 ms
22,788 KB
testcase_25 AC 42 ms
11,904 KB
testcase_26 AC 35 ms
11,904 KB
testcase_27 AC 30 ms
10,624 KB
evil01.txt AC 90 ms
25,028 KB
evil02.txt AC 93 ms
25,044 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