結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 18 ms
8,572 KB
testcase_01 AC 19 ms
8,600 KB
testcase_02 AC 19 ms
8,404 KB
testcase_03 AC 18 ms
8,520 KB
testcase_04 AC 18 ms
8,448 KB
testcase_05 AC 18 ms
8,636 KB
testcase_06 AC 18 ms
8,504 KB
testcase_07 AC 19 ms
8,532 KB
testcase_08 AC 43 ms
17,060 KB
testcase_09 AC 57 ms
18,984 KB
testcase_10 AC 53 ms
18,804 KB
testcase_11 AC 47 ms
17,480 KB
testcase_12 AC 30 ms
13,000 KB
testcase_13 AC 18 ms
8,496 KB
testcase_14 AC 18 ms
8,456 KB
testcase_15 AC 18 ms
8,452 KB
testcase_16 AC 18 ms
8,580 KB
testcase_17 AC 18 ms
8,476 KB
testcase_18 AC 46 ms
16,700 KB
testcase_19 AC 38 ms
14,360 KB
testcase_20 AC 31 ms
12,264 KB
testcase_21 AC 50 ms
17,996 KB
testcase_22 AC 34 ms
13,016 KB
testcase_23 AC 18 ms
8,444 KB
testcase_24 AC 60 ms
23,328 KB
testcase_25 AC 41 ms
10,412 KB
testcase_26 AC 23 ms
10,056 KB
testcase_27 AC 18 ms
8,396 KB
evil01.txt AC 60 ms
23,244 KB
evil02.txt AC 63 ms
23,356 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