結果

問題 No.182 新規性の虜
ユーザー rpy3cpprpy3cpp
提出日時 2015-04-16 23:47:27
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 95 ms / 5,000 ms
コード長 155 bytes
コンパイル時間 551 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 27,192 KB
最終ジャッジ日時 2024-12-26 18:49:53
合計ジャッジ時間 3,401 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
10,624 KB
testcase_01 AC 36 ms
10,368 KB
testcase_02 AC 34 ms
10,368 KB
testcase_03 AC 35 ms
10,496 KB
testcase_04 AC 35 ms
10,368 KB
testcase_05 AC 34 ms
10,496 KB
testcase_06 AC 34 ms
10,368 KB
testcase_07 AC 37 ms
10,368 KB
testcase_08 AC 69 ms
19,872 KB
testcase_09 AC 92 ms
22,668 KB
testcase_10 AC 80 ms
22,116 KB
testcase_11 AC 71 ms
19,996 KB
testcase_12 AC 52 ms
14,992 KB
testcase_13 AC 36 ms
10,496 KB
testcase_14 AC 35 ms
10,368 KB
testcase_15 AC 36 ms
10,496 KB
testcase_16 AC 37 ms
10,368 KB
testcase_17 AC 35 ms
10,496 KB
testcase_18 AC 71 ms
15,392 KB
testcase_19 AC 61 ms
14,596 KB
testcase_20 AC 51 ms
12,928 KB
testcase_21 AC 80 ms
15,888 KB
testcase_22 AC 54 ms
13,312 KB
testcase_23 AC 35 ms
10,368 KB
testcase_24 AC 95 ms
27,192 KB
testcase_25 AC 66 ms
11,648 KB
testcase_26 AC 41 ms
12,160 KB
testcase_27 AC 36 ms
10,496 KB
evil01.txt AC 100 ms
29,032 KB
evil02.txt AC 99 ms
29,036 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter

N = int(input())
A = Counter(map(int, input().split()))
answer = len([1 for val in A.values() if val == 1])
print(answer)
0