結果

問題 No.182 新規性の虜
ユーザー qazqaz
提出日時 2017-05-28 15:24:09
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 90 ms / 5,000 ms
コード長 173 bytes
コンパイル時間 408 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 25,192 KB
最終ジャッジ日時 2024-12-27 15:41:55
合計ジャッジ時間 3,075 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,496 KB
testcase_01 AC 30 ms
10,368 KB
testcase_02 AC 31 ms
10,368 KB
testcase_03 AC 30 ms
10,368 KB
testcase_04 AC 30 ms
10,368 KB
testcase_05 AC 29 ms
10,368 KB
testcase_06 AC 30 ms
10,368 KB
testcase_07 AC 30 ms
10,496 KB
testcase_08 AC 65 ms
19,324 KB
testcase_09 AC 88 ms
21,140 KB
testcase_10 AC 80 ms
19,928 KB
testcase_11 AC 72 ms
19,748 KB
testcase_12 AC 49 ms
15,392 KB
testcase_13 AC 29 ms
10,368 KB
testcase_14 AC 29 ms
10,624 KB
testcase_15 AC 29 ms
10,368 KB
testcase_16 AC 31 ms
10,496 KB
testcase_17 AC 29 ms
10,496 KB
testcase_18 AC 63 ms
17,828 KB
testcase_19 AC 55 ms
15,640 KB
testcase_20 AC 45 ms
13,824 KB
testcase_21 AC 67 ms
18,700 KB
testcase_22 AC 48 ms
14,464 KB
testcase_23 AC 30 ms
10,368 KB
testcase_24 AC 90 ms
25,192 KB
testcase_25 AC 59 ms
12,380 KB
testcase_26 AC 37 ms
12,160 KB
testcase_27 AC 32 ms
10,368 KB
evil01.txt AC 96 ms
25,656 KB
evil02.txt AC 100 ms
25,784 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter
N = int(input())
a = list(map(int, input().split()))
c = Counter(a)
ans = 0
for i in c.values():
    if i == 1 :
        ans += 1
print(ans)
0