結果

問題 No.182 新規性の虜
ユーザー fV9TwBhUoa9S3eVfV9TwBhUoa9S3eV
提出日時 2019-09-17 15:40:18
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 91 ms / 5,000 ms
コード長 202 bytes
コンパイル時間 97 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 25,196 KB
最終ジャッジ日時 2024-07-07 13:15:13
合計ジャッジ時間 2,265 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,368 KB
testcase_01 AC 27 ms
10,624 KB
testcase_02 AC 27 ms
10,368 KB
testcase_03 AC 25 ms
10,368 KB
testcase_04 AC 25 ms
10,368 KB
testcase_05 AC 25 ms
10,368 KB
testcase_06 AC 25 ms
10,496 KB
testcase_07 AC 25 ms
10,496 KB
testcase_08 AC 56 ms
19,332 KB
testcase_09 AC 71 ms
20,980 KB
testcase_10 AC 63 ms
19,816 KB
testcase_11 AC 57 ms
19,532 KB
testcase_12 AC 44 ms
15,400 KB
testcase_13 AC 25 ms
10,496 KB
testcase_14 AC 25 ms
10,496 KB
testcase_15 AC 25 ms
10,496 KB
testcase_16 AC 25 ms
10,496 KB
testcase_17 AC 24 ms
10,496 KB
testcase_18 AC 65 ms
17,804 KB
testcase_19 AC 53 ms
15,772 KB
testcase_20 AC 42 ms
13,696 KB
testcase_21 AC 70 ms
18,848 KB
testcase_22 AC 49 ms
14,600 KB
testcase_23 AC 27 ms
10,496 KB
testcase_24 AC 91 ms
25,196 KB
testcase_25 AC 61 ms
12,480 KB
testcase_26 AC 30 ms
12,160 KB
testcase_27 AC 25 ms
10,368 KB
evil01.txt AC 77 ms
25,604 KB
evil02.txt AC 80 ms
25,544 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