結果

問題 No.182 新規性の虜
ユーザー rpy3cpprpy3cpp
提出日時 2015-04-16 23:47:27
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 57 ms / 5,000 ms
コード長 155 bytes
コンパイル時間 598 ms
コンパイル使用メモリ 10,616 KB
実行使用メモリ 26,540 KB
最終ジャッジ日時 2023-08-27 07:08:14
合計ジャッジ時間 2,757 ms
ジャッジサーバーID
(参考情報)
judge13 / judge12
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 17 ms
8,496 KB
testcase_01 AC 17 ms
8,612 KB
testcase_02 AC 17 ms
8,444 KB
testcase_03 AC 16 ms
8,460 KB
testcase_04 AC 17 ms
8,528 KB
testcase_05 AC 15 ms
8,452 KB
testcase_06 AC 16 ms
8,416 KB
testcase_07 AC 16 ms
8,444 KB
testcase_08 AC 41 ms
17,924 KB
testcase_09 AC 56 ms
20,724 KB
testcase_10 AC 48 ms
19,868 KB
testcase_11 AC 45 ms
18,020 KB
testcase_12 AC 28 ms
13,084 KB
testcase_13 AC 16 ms
8,576 KB
testcase_14 AC 16 ms
8,584 KB
testcase_15 AC 17 ms
8,440 KB
testcase_16 AC 17 ms
8,532 KB
testcase_17 AC 16 ms
8,584 KB
testcase_18 AC 43 ms
14,416 KB
testcase_19 AC 36 ms
13,100 KB
testcase_20 AC 29 ms
11,456 KB
testcase_21 AC 46 ms
15,356 KB
testcase_22 AC 31 ms
12,000 KB
testcase_23 AC 17 ms
8,496 KB
testcase_24 AC 57 ms
26,540 KB
testcase_25 AC 38 ms
9,632 KB
testcase_26 AC 22 ms
9,956 KB
testcase_27 AC 17 ms
8,604 KB
evil01.txt AC 62 ms
27,040 KB
evil02.txt AC 65 ms
26,932 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