結果

問題 No.182 新規性の虜
ユーザー kokoa1046kokoa1046
提出日時 2017-09-09 18:05:00
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 104 ms / 5,000 ms
コード長 193 bytes
コンパイル時間 93 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 27,024 KB
最終ジャッジ日時 2024-12-27 19:12:42
合計ジャッジ時間 2,866 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,240 KB
testcase_01 AC 30 ms
10,496 KB
testcase_02 AC 29 ms
10,368 KB
testcase_03 AC 31 ms
10,496 KB
testcase_04 AC 31 ms
10,496 KB
testcase_05 AC 30 ms
10,496 KB
testcase_06 AC 30 ms
10,240 KB
testcase_07 AC 31 ms
10,112 KB
testcase_08 AC 74 ms
19,752 KB
testcase_09 AC 104 ms
22,736 KB
testcase_10 AC 92 ms
22,004 KB
testcase_11 AC 84 ms
19,952 KB
testcase_12 AC 54 ms
14,992 KB
testcase_13 AC 30 ms
10,496 KB
testcase_14 AC 29 ms
10,368 KB
testcase_15 AC 30 ms
10,368 KB
testcase_16 AC 30 ms
10,496 KB
testcase_17 AC 30 ms
10,112 KB
testcase_18 AC 63 ms
15,264 KB
testcase_19 AC 53 ms
14,228 KB
testcase_20 AC 47 ms
13,056 KB
testcase_21 AC 69 ms
15,888 KB
testcase_22 AC 53 ms
13,056 KB
testcase_23 AC 32 ms
10,496 KB
testcase_24 AC 100 ms
27,024 KB
testcase_25 AC 61 ms
11,708 KB
testcase_26 AC 38 ms
12,032 KB
testcase_27 AC 31 ms
10,368 KB
evil01.txt AC 107 ms
28,984 KB
evil02.txt AC 112 ms
28,732 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# coding: utf-8
# Here your code !
from collections import Counter

n = int(input())
a = Counter(map(int, input().split()))
sum = 0
for i in a:
     if a[i]==1:
         sum+=1
    
print(sum)
0