結果

問題 No.182 新規性の虜
ユーザー yomo3yomo3
提出日時 2020-01-25 03:42:24
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 61 ms / 5,000 ms
コード長 136 bytes
コンパイル時間 74 ms
コンパイル使用メモリ 10,736 KB
実行使用メモリ 26,600 KB
最終ジャッジ日時 2023-10-12 04:29:17
合計ジャッジ時間 2,791 ms
ジャッジサーバーID
(参考情報)
judge11 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 18 ms
8,464 KB
testcase_01 AC 17 ms
8,580 KB
testcase_02 AC 17 ms
8,456 KB
testcase_03 AC 17 ms
8,536 KB
testcase_04 AC 17 ms
8,448 KB
testcase_05 AC 17 ms
8,388 KB
testcase_06 AC 18 ms
8,468 KB
testcase_07 AC 17 ms
8,536 KB
testcase_08 AC 42 ms
17,968 KB
testcase_09 AC 58 ms
20,780 KB
testcase_10 AC 56 ms
19,848 KB
testcase_11 AC 47 ms
17,900 KB
testcase_12 AC 30 ms
13,100 KB
testcase_13 AC 18 ms
8,528 KB
testcase_14 AC 17 ms
8,568 KB
testcase_15 AC 17 ms
8,468 KB
testcase_16 AC 17 ms
8,452 KB
testcase_17 AC 17 ms
8,464 KB
testcase_18 AC 44 ms
14,460 KB
testcase_19 AC 36 ms
13,044 KB
testcase_20 AC 30 ms
11,312 KB
testcase_21 AC 48 ms
15,272 KB
testcase_22 AC 32 ms
11,932 KB
testcase_23 AC 18 ms
8,460 KB
testcase_24 AC 61 ms
26,600 KB
testcase_25 AC 39 ms
9,448 KB
testcase_26 AC 22 ms
10,096 KB
testcase_27 AC 17 ms
8,580 KB
evil01.txt AC 64 ms
26,916 KB
evil02.txt AC 67 ms
27,024 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter

input()
counter=Counter(map(int, input().split()))
ans = sum(v==1 for v in counter.values())
print(ans)
0