結果

問題 No.182 新規性の虜
ユーザー convexineqconvexineq
提出日時 2020-12-10 09:31:18
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 86 ms / 5,000 ms
コード長 137 bytes
コンパイル時間 222 ms
コンパイル使用メモリ 82,028 KB
実行使用メモリ 107,892 KB
最終ジャッジ日時 2024-09-19 17:21:58
合計ジャッジ時間 2,858 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
54,996 KB
testcase_01 AC 37 ms
54,388 KB
testcase_02 AC 37 ms
54,284 KB
testcase_03 AC 36 ms
54,148 KB
testcase_04 AC 37 ms
54,472 KB
testcase_05 AC 38 ms
54,340 KB
testcase_06 AC 38 ms
54,936 KB
testcase_07 AC 39 ms
54,616 KB
testcase_08 AC 69 ms
88,904 KB
testcase_09 AC 85 ms
104,512 KB
testcase_10 AC 82 ms
101,248 KB
testcase_11 AC 70 ms
91,404 KB
testcase_12 AC 55 ms
74,784 KB
testcase_13 AC 38 ms
53,228 KB
testcase_14 AC 36 ms
55,120 KB
testcase_15 AC 37 ms
54,392 KB
testcase_16 AC 35 ms
55,036 KB
testcase_17 AC 36 ms
55,284 KB
testcase_18 AC 62 ms
83,688 KB
testcase_19 AC 58 ms
77,496 KB
testcase_20 AC 59 ms
74,476 KB
testcase_21 AC 67 ms
85,532 KB
testcase_22 AC 56 ms
76,096 KB
testcase_23 AC 38 ms
54,032 KB
testcase_24 AC 86 ms
107,892 KB
testcase_25 AC 63 ms
84,440 KB
testcase_26 AC 52 ms
66,544 KB
testcase_27 AC 40 ms
54,796 KB
evil01.txt AC 92 ms
108,672 KB
evil02.txt AC 90 ms
108,680 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
*a, = map(int,input().split())
from collections import Counter
d = Counter(a)
print(sum(1 for k,v in d.items() if v==1))
0