結果

問題 No.182 新規性の虜
ユーザー convexineqconvexineq
提出日時 2020-12-10 09:31:18
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 96 ms / 5,000 ms
コード長 137 bytes
コンパイル時間 207 ms
コンパイル使用メモリ 81,784 KB
実行使用メモリ 107,440 KB
最終ジャッジ日時 2023-10-19 21:18:45
合計ジャッジ時間 3,522 ms
ジャッジサーバーID
(参考情報)
judge12 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
53,432 KB
testcase_01 AC 41 ms
53,432 KB
testcase_02 AC 41 ms
53,432 KB
testcase_03 AC 41 ms
53,432 KB
testcase_04 AC 41 ms
53,432 KB
testcase_05 AC 40 ms
53,432 KB
testcase_06 AC 41 ms
53,432 KB
testcase_07 AC 41 ms
53,432 KB
testcase_08 AC 77 ms
88,652 KB
testcase_09 AC 96 ms
104,432 KB
testcase_10 AC 91 ms
100,752 KB
testcase_11 AC 77 ms
91,140 KB
testcase_12 AC 60 ms
74,008 KB
testcase_13 AC 41 ms
53,432 KB
testcase_14 AC 42 ms
53,432 KB
testcase_15 AC 41 ms
53,432 KB
testcase_16 AC 41 ms
53,432 KB
testcase_17 AC 42 ms
53,432 KB
testcase_18 AC 70 ms
82,344 KB
testcase_19 AC 63 ms
78,272 KB
testcase_20 AC 61 ms
74,464 KB
testcase_21 AC 71 ms
86,228 KB
testcase_22 AC 61 ms
73,976 KB
testcase_23 AC 41 ms
53,432 KB
testcase_24 AC 96 ms
107,440 KB
testcase_25 AC 68 ms
85,008 KB
testcase_26 AC 51 ms
66,700 KB
testcase_27 AC 41 ms
53,432 KB
evil01.txt AC 104 ms
108,512 KB
evil02.txt AC 101 ms
108,512 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