結果

問題 No.182 新規性の虜
ユーザー fV9TwBhUoa9S3eVfV9TwBhUoa9S3eV
提出日時 2019-09-17 15:40:18
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 65 ms / 5,000 ms
コード長 202 bytes
コンパイル時間 93 ms
コンパイル使用メモリ 10,608 KB
実行使用メモリ 22,240 KB
最終ジャッジ日時 2023-09-21 19:40:04
合計ジャッジ時間 2,191 ms
ジャッジサーバーID
(参考情報)
judge12 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 14 ms
7,896 KB
testcase_01 AC 14 ms
7,892 KB
testcase_02 AC 14 ms
7,800 KB
testcase_03 AC 14 ms
7,836 KB
testcase_04 AC 14 ms
7,888 KB
testcase_05 AC 14 ms
7,908 KB
testcase_06 AC 14 ms
7,964 KB
testcase_07 AC 14 ms
7,956 KB
testcase_08 AC 44 ms
16,760 KB
testcase_09 AC 58 ms
18,852 KB
testcase_10 AC 55 ms
18,400 KB
testcase_11 AC 48 ms
18,300 KB
testcase_12 AC 29 ms
12,576 KB
testcase_13 AC 14 ms
7,800 KB
testcase_14 AC 15 ms
7,912 KB
testcase_15 AC 15 ms
7,856 KB
testcase_16 AC 15 ms
7,956 KB
testcase_17 AC 14 ms
7,904 KB
testcase_18 AC 55 ms
16,348 KB
testcase_19 AC 42 ms
13,976 KB
testcase_20 AC 32 ms
11,848 KB
testcase_21 AC 61 ms
17,552 KB
testcase_22 AC 35 ms
12,576 KB
testcase_23 AC 15 ms
7,772 KB
testcase_24 AC 65 ms
22,240 KB
testcase_25 AC 51 ms
9,900 KB
testcase_26 AC 21 ms
9,728 KB
testcase_27 AC 14 ms
7,776 KB
evil01.txt AC 67 ms
23,124 KB
evil02.txt AC 71 ms
23,168 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# No.182 新規性の虜
n = int(input())
a = list(map(int, input().split()))

c = {}
for i in a:
    if i not in c:
        c[i] = 1
    else:
        c[i] += 1

b = list(c.values())

print(b.count(1))
0