結果

問題 No.182 新規性の虜
ユーザー yukirinyukirin
提出日時 2015-04-24 21:29:13
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 64 ms / 5,000 ms
コード長 125 bytes
コンパイル時間 100 ms
コンパイル使用メモリ 10,500 KB
実行使用メモリ 26,376 KB
最終ジャッジ日時 2023-08-27 07:16:04
合計ジャッジ時間 2,483 ms
ジャッジサーバーID
(参考情報)
judge12 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 18 ms
8,492 KB
testcase_01 AC 19 ms
8,416 KB
testcase_02 AC 19 ms
8,340 KB
testcase_03 AC 19 ms
8,532 KB
testcase_04 AC 18 ms
8,440 KB
testcase_05 AC 19 ms
8,548 KB
testcase_06 AC 18 ms
8,412 KB
testcase_07 AC 18 ms
8,432 KB
testcase_08 AC 47 ms
18,032 KB
testcase_09 AC 62 ms
20,732 KB
testcase_10 AC 55 ms
19,660 KB
testcase_11 AC 50 ms
17,844 KB
testcase_12 AC 32 ms
13,076 KB
testcase_13 AC 19 ms
8,404 KB
testcase_14 AC 19 ms
8,552 KB
testcase_15 AC 19 ms
8,628 KB
testcase_16 AC 19 ms
8,424 KB
testcase_17 AC 19 ms
8,504 KB
testcase_18 AC 46 ms
14,564 KB
testcase_19 AC 38 ms
12,824 KB
testcase_20 AC 31 ms
11,276 KB
testcase_21 AC 50 ms
15,236 KB
testcase_22 AC 35 ms
11,804 KB
testcase_23 AC 19 ms
8,628 KB
testcase_24 AC 64 ms
26,376 KB
testcase_25 AC 41 ms
9,456 KB
testcase_26 AC 24 ms
9,908 KB
testcase_27 AC 19 ms
8,544 KB
evil01.txt AC 66 ms
26,880 KB
evil02.txt AC 71 ms
26,876 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter

input()
c = Counter(map(int, input().split()))
print(len([1 for i in c.values() if i == 1]))
0