結果

問題 No.182 新規性の虜
ユーザー akitsugu777akitsugu777
提出日時 2019-09-20 16:41:15
言語 Python3
(3.11.6 + numpy 1.26.0 + scipy 1.11.3)
結果
AC  
実行時間 59 ms / 5,000 ms
コード長 134 bytes
コンパイル時間 375 ms
コンパイル使用メモリ 10,588 KB
実行使用メモリ 23,228 KB
最終ジャッジ日時 2023-10-12 08:22:50
合計ジャッジ時間 2,575 ms
ジャッジサーバーID
(参考情報)
judge14 / judge13
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 18 ms
8,468 KB
testcase_01 AC 18 ms
8,540 KB
testcase_02 AC 18 ms
8,556 KB
testcase_03 AC 17 ms
8,544 KB
testcase_04 AC 18 ms
8,432 KB
testcase_05 AC 17 ms
8,484 KB
testcase_06 AC 17 ms
8,524 KB
testcase_07 AC 18 ms
8,416 KB
testcase_08 AC 41 ms
17,036 KB
testcase_09 AC 55 ms
18,988 KB
testcase_10 AC 50 ms
18,768 KB
testcase_11 AC 46 ms
16,552 KB
testcase_12 AC 30 ms
13,084 KB
testcase_13 AC 18 ms
8,512 KB
testcase_14 AC 17 ms
8,460 KB
testcase_15 AC 18 ms
8,456 KB
testcase_16 AC 18 ms
8,424 KB
testcase_17 AC 18 ms
8,540 KB
testcase_18 AC 46 ms
16,652 KB
testcase_19 AC 37 ms
14,332 KB
testcase_20 AC 30 ms
12,248 KB
testcase_21 AC 51 ms
17,920 KB
testcase_22 AC 35 ms
13,060 KB
testcase_23 AC 18 ms
8,424 KB
testcase_24 AC 59 ms
23,228 KB
testcase_25 AC 40 ms
10,364 KB
testcase_26 AC 23 ms
10,116 KB
testcase_27 AC 17 ms
8,500 KB
evil01.txt AC 61 ms
23,356 KB
evil02.txt AC 63 ms
23,220 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter

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

d = Counter(A)
print(list(d.values()).count(1))
0