結果

問題 No.182 新規性の虜
ユーザー daku9640daku9640
提出日時 2016-10-06 03:19:17
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 71 ms / 5,000 ms
コード長 143 bytes
コンパイル時間 287 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 25,440 KB
最終ジャッジ日時 2024-06-08 08:31:35
合計ジャッジ時間 2,476 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,624 KB
testcase_01 AC 27 ms
10,368 KB
testcase_02 AC 27 ms
10,624 KB
testcase_03 AC 26 ms
10,496 KB
testcase_04 AC 27 ms
10,496 KB
testcase_05 AC 28 ms
10,496 KB
testcase_06 AC 28 ms
10,368 KB
testcase_07 AC 28 ms
10,496 KB
testcase_08 AC 53 ms
19,428 KB
testcase_09 AC 69 ms
21,080 KB
testcase_10 AC 64 ms
19,788 KB
testcase_11 AC 59 ms
19,620 KB
testcase_12 AC 43 ms
15,396 KB
testcase_13 AC 28 ms
10,496 KB
testcase_14 AC 27 ms
10,496 KB
testcase_15 AC 27 ms
10,496 KB
testcase_16 AC 27 ms
10,624 KB
testcase_17 AC 27 ms
10,496 KB
testcase_18 AC 56 ms
17,684 KB
testcase_19 AC 51 ms
15,768 KB
testcase_20 AC 42 ms
13,696 KB
testcase_21 AC 65 ms
18,704 KB
testcase_22 AC 45 ms
14,720 KB
testcase_23 AC 28 ms
10,624 KB
testcase_24 AC 71 ms
25,440 KB
testcase_25 AC 53 ms
12,500 KB
testcase_26 AC 32 ms
12,288 KB
testcase_27 AC 27 ms
10,368 KB
evil01.txt AC 76 ms
25,600 KB
evil02.txt AC 83 ms
25,664 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter
N = int(input())
cnt = Counter(list(map(int, input().split())))
m = [i for i in cnt.values()]
print(m.count(1))
0