結果

問題 No.182 新規性の虜
ユーザー liny_tailliny_tail
提出日時 2020-08-17 00:00:38
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 92 ms / 5,000 ms
コード長 176 bytes
コンパイル時間 113 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 27,504 KB
最終ジャッジ日時 2024-04-19 18:36:10
合計ジャッジ時間 2,838 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,624 KB
testcase_01 AC 25 ms
10,752 KB
testcase_02 AC 26 ms
10,624 KB
testcase_03 AC 26 ms
10,624 KB
testcase_04 AC 26 ms
10,624 KB
testcase_05 AC 26 ms
10,624 KB
testcase_06 AC 25 ms
10,624 KB
testcase_07 AC 26 ms
10,624 KB
testcase_08 AC 62 ms
19,712 KB
testcase_09 AC 85 ms
23,008 KB
testcase_10 AC 74 ms
21,784 KB
testcase_11 AC 65 ms
20,652 KB
testcase_12 AC 45 ms
15,848 KB
testcase_13 AC 25 ms
10,624 KB
testcase_14 AC 27 ms
10,624 KB
testcase_15 AC 26 ms
10,624 KB
testcase_16 AC 28 ms
10,752 KB
testcase_17 AC 27 ms
10,624 KB
testcase_18 AC 62 ms
17,964 KB
testcase_19 AC 51 ms
15,904 KB
testcase_20 AC 42 ms
14,208 KB
testcase_21 AC 64 ms
18,976 KB
testcase_22 AC 46 ms
14,732 KB
testcase_23 AC 25 ms
10,752 KB
testcase_24 AC 92 ms
27,504 KB
testcase_25 AC 54 ms
12,604 KB
testcase_26 AC 32 ms
12,416 KB
testcase_27 AC 25 ms
10,752 KB
evil01.txt AC 90 ms
27,460 KB
evil02.txt AC 96 ms
27,524 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import collections

N = int(input().strip())
A = [int(i) for i in input().strip().split()]
lst = list(collections.Counter(A).items())
print(len([i for i in lst if i[1] == 1]))
0