結果

問題 No.182 新規性の虜
ユーザー zombietanzombietan
提出日時 2016-05-03 02:46:36
言語 Python3
(3.11.6 + numpy 1.26.0 + scipy 1.11.3)
結果
AC  
実行時間 81 ms / 5,000 ms
コード長 143 bytes
コンパイル時間 783 ms
コンパイル使用メモリ 10,644 KB
実行使用メモリ 26,884 KB
最終ジャッジ日時 2023-08-27 10:44:35
合計ジャッジ時間 2,943 ms
ジャッジサーバーID
(参考情報)
judge14 / judge11
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 18 ms
8,476 KB
testcase_01 AC 18 ms
8,488 KB
testcase_02 AC 18 ms
8,480 KB
testcase_03 AC 18 ms
8,380 KB
testcase_04 AC 18 ms
8,404 KB
testcase_05 AC 18 ms
8,376 KB
testcase_06 AC 17 ms
8,552 KB
testcase_07 AC 18 ms
8,476 KB
testcase_08 AC 46 ms
18,004 KB
testcase_09 AC 63 ms
22,092 KB
testcase_10 AC 56 ms
21,164 KB
testcase_11 AC 52 ms
19,148 KB
testcase_12 AC 31 ms
13,200 KB
testcase_13 AC 18 ms
8,440 KB
testcase_14 AC 18 ms
8,488 KB
testcase_15 AC 18 ms
8,372 KB
testcase_16 AC 18 ms
8,544 KB
testcase_17 AC 18 ms
8,444 KB
testcase_18 AC 38 ms
14,072 KB
testcase_19 AC 33 ms
12,268 KB
testcase_20 AC 27 ms
10,948 KB
testcase_21 AC 41 ms
14,848 KB
testcase_22 AC 30 ms
11,476 KB
testcase_23 AC 18 ms
8,492 KB
testcase_24 AC 81 ms
26,884 KB
testcase_25 AC 28 ms
9,644 KB
testcase_26 AC 24 ms
10,180 KB
testcase_27 AC 19 ms
8,332 KB
evil01.txt AC 80 ms
27,260 KB
evil02.txt AC 80 ms
27,260 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter
n = int(input())
an = input().split()
cnt = Counter(an)
a = [i for i in cnt.items() if i[1] == 1]
print(len(a))
0