結果

問題 No.182 新規性の虜
ユーザー tora3kuma3tora3kuma3
提出日時 2015-04-18 11:29:17
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 60 ms / 5,000 ms
コード長 181 bytes
コンパイル時間 207 ms
コンパイル使用メモリ 10,712 KB
実行使用メモリ 21,988 KB
最終ジャッジ日時 2023-08-27 07:14:41
合計ジャッジ時間 2,413 ms
ジャッジサーバーID
(参考情報)
judge12 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 19 ms
8,460 KB
testcase_01 AC 19 ms
8,444 KB
testcase_02 AC 19 ms
8,468 KB
testcase_03 AC 18 ms
8,388 KB
testcase_04 AC 19 ms
8,408 KB
testcase_05 AC 18 ms
8,512 KB
testcase_06 AC 19 ms
8,488 KB
testcase_07 AC 18 ms
8,484 KB
testcase_08 AC 40 ms
15,536 KB
testcase_09 AC 54 ms
17,836 KB
testcase_10 AC 47 ms
17,052 KB
testcase_11 AC 43 ms
16,152 KB
testcase_12 AC 28 ms
11,556 KB
testcase_13 AC 19 ms
8,312 KB
testcase_14 AC 18 ms
8,492 KB
testcase_15 AC 19 ms
8,444 KB
testcase_16 AC 18 ms
8,392 KB
testcase_17 AC 19 ms
8,468 KB
testcase_18 AC 39 ms
14,088 KB
testcase_19 AC 33 ms
12,560 KB
testcase_20 AC 28 ms
10,828 KB
testcase_21 AC 41 ms
14,892 KB
testcase_22 AC 29 ms
11,428 KB
testcase_23 AC 19 ms
8,380 KB
testcase_24 AC 60 ms
21,988 KB
testcase_25 AC 28 ms
9,332 KB
testcase_26 AC 22 ms
9,692 KB
testcase_27 AC 19 ms
8,416 KB
evil01.txt AC 61 ms
22,804 KB
evil02.txt AC 61 ms
22,780 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from sys import stdin
readline = stdin.readline

from collections import Counter

n = int(readline())
c = Counter(readline().split())

print(sum(1 for k, v in c.items() if v == 1))
0