結果

問題 No.182 新規性の虜
ユーザー MaboyMaboy
提出日時 2018-02-21 08:25:17
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 59 ms / 5,000 ms
コード長 121 bytes
コンパイル時間 191 ms
コンパイル使用メモリ 10,612 KB
実行使用メモリ 23,120 KB
最終ジャッジ日時 2023-10-12 10:47:31
合計ジャッジ時間 2,385 ms
ジャッジサーバーID
(参考情報)
judge11 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 18 ms
8,412 KB
testcase_01 AC 18 ms
8,404 KB
testcase_02 AC 18 ms
8,428 KB
testcase_03 AC 17 ms
8,388 KB
testcase_04 AC 17 ms
8,460 KB
testcase_05 AC 17 ms
8,536 KB
testcase_06 AC 18 ms
8,540 KB
testcase_07 AC 17 ms
8,404 KB
testcase_08 AC 41 ms
17,020 KB
testcase_09 AC 54 ms
18,820 KB
testcase_10 AC 50 ms
18,752 KB
testcase_11 AC 46 ms
17,660 KB
testcase_12 AC 29 ms
13,024 KB
testcase_13 AC 17 ms
8,528 KB
testcase_14 AC 18 ms
8,432 KB
testcase_15 AC 17 ms
8,392 KB
testcase_16 AC 18 ms
8,400 KB
testcase_17 AC 17 ms
8,308 KB
testcase_18 AC 46 ms
16,672 KB
testcase_19 AC 37 ms
14,300 KB
testcase_20 AC 30 ms
12,260 KB
testcase_21 AC 50 ms
17,972 KB
testcase_22 AC 33 ms
12,936 KB
testcase_23 AC 18 ms
8,436 KB
testcase_24 AC 59 ms
23,120 KB
testcase_25 AC 41 ms
10,200 KB
testcase_26 AC 22 ms
10,160 KB
testcase_27 AC 18 ms
8,388 KB
evil01.txt AC 59 ms
23,412 KB
evil02.txt AC 61 ms
23,192 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter
n=int(input())
a=list(map(int,input().split()))
print(list(Counter(a).values()).count(1))
0