結果

問題 No.182 新規性の虜
ユーザー magurogumamaguroguma
提出日時 2017-08-27 14:47:08
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 113 ms / 5,000 ms
コード長 243 bytes
コンパイル時間 536 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 24,412 KB
最終ジャッジ日時 2024-12-27 19:06:43
合計ジャッジ時間 3,690 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,368 KB
testcase_01 AC 31 ms
10,496 KB
testcase_02 AC 33 ms
10,368 KB
testcase_03 AC 32 ms
10,496 KB
testcase_04 AC 30 ms
10,368 KB
testcase_05 AC 29 ms
10,496 KB
testcase_06 AC 31 ms
10,496 KB
testcase_07 AC 31 ms
10,368 KB
testcase_08 AC 78 ms
19,256 KB
testcase_09 AC 109 ms
21,148 KB
testcase_10 AC 97 ms
19,812 KB
testcase_11 AC 80 ms
19,664 KB
testcase_12 AC 54 ms
15,284 KB
testcase_13 AC 33 ms
10,368 KB
testcase_14 AC 31 ms
10,496 KB
testcase_15 AC 31 ms
10,368 KB
testcase_16 AC 32 ms
10,496 KB
testcase_17 AC 31 ms
10,496 KB
testcase_18 AC 77 ms
17,716 KB
testcase_19 AC 62 ms
15,780 KB
testcase_20 AC 51 ms
13,696 KB
testcase_21 AC 83 ms
18,720 KB
testcase_22 AC 61 ms
14,352 KB
testcase_23 AC 29 ms
10,496 KB
testcase_24 AC 113 ms
24,412 KB
testcase_25 AC 76 ms
12,356 KB
testcase_26 AC 40 ms
12,160 KB
testcase_27 AC 32 ms
10,368 KB
evil01.txt AC 116 ms
25,680 KB
evil02.txt AC 113 ms
25,556 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# -*- coding: utf-8 -*-

N = int(input())
A = list(map(int, input().split()))

dict = {}
for a in A:
    if a in dict:
        dict[a] += 1
    else:
        dict[a] = 1

ans = 0
for key in dict:
    ans += 1 if dict[key]==1 else 0

print(ans)
0