結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,496 KB
testcase_01 AC 32 ms
10,624 KB
testcase_02 AC 30 ms
10,624 KB
testcase_03 AC 30 ms
10,624 KB
testcase_04 AC 30 ms
10,752 KB
testcase_05 AC 29 ms
10,496 KB
testcase_06 AC 29 ms
10,496 KB
testcase_07 AC 30 ms
10,624 KB
testcase_08 AC 69 ms
19,572 KB
testcase_09 AC 96 ms
23,088 KB
testcase_10 AC 83 ms
21,784 KB
testcase_11 AC 75 ms
20,524 KB
testcase_12 AC 50 ms
15,724 KB
testcase_13 AC 29 ms
10,496 KB
testcase_14 AC 29 ms
10,496 KB
testcase_15 AC 29 ms
10,496 KB
testcase_16 AC 29 ms
10,624 KB
testcase_17 AC 28 ms
10,496 KB
testcase_18 AC 69 ms
17,840 KB
testcase_19 AC 59 ms
15,772 KB
testcase_20 AC 48 ms
14,080 KB
testcase_21 AC 73 ms
18,848 KB
testcase_22 AC 51 ms
14,476 KB
testcase_23 AC 30 ms
10,624 KB
testcase_24 AC 102 ms
27,244 KB
testcase_25 AC 62 ms
12,356 KB
testcase_26 AC 37 ms
12,416 KB
testcase_27 AC 29 ms
10,624 KB
evil01.txt AC 104 ms
27,332 KB
evil02.txt AC 106 ms
27,332 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