結果

問題 No.182 新規性の虜
ユーザー あかりきあかりき
提出日時 2021-02-12 12:24:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 96 ms / 5,000 ms
コード長 128 bytes
コンパイル時間 245 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 99,328 KB
最終ジャッジ日時 2024-07-19 06:35:12
合計ジャッジ時間 3,809 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
53,376 KB
testcase_01 AC 47 ms
53,248 KB
testcase_02 AC 47 ms
53,248 KB
testcase_03 AC 47 ms
53,376 KB
testcase_04 AC 47 ms
53,376 KB
testcase_05 AC 47 ms
53,248 KB
testcase_06 AC 48 ms
53,504 KB
testcase_07 AC 46 ms
53,248 KB
testcase_08 AC 79 ms
83,456 KB
testcase_09 AC 96 ms
97,280 KB
testcase_10 AC 91 ms
92,928 KB
testcase_11 AC 83 ms
86,784 KB
testcase_12 AC 65 ms
71,168 KB
testcase_13 AC 47 ms
53,248 KB
testcase_14 AC 47 ms
53,504 KB
testcase_15 AC 47 ms
53,120 KB
testcase_16 AC 47 ms
53,248 KB
testcase_17 AC 46 ms
53,376 KB
testcase_18 AC 76 ms
79,232 KB
testcase_19 AC 71 ms
74,496 KB
testcase_20 AC 65 ms
69,120 KB
testcase_21 AC 81 ms
81,408 KB
testcase_22 AC 67 ms
71,296 KB
testcase_23 AC 47 ms
53,248 KB
testcase_24 AC 93 ms
99,328 KB
testcase_25 AC 74 ms
80,256 KB
testcase_26 AC 58 ms
64,512 KB
testcase_27 AC 47 ms
53,376 KB
evil01.txt AC 99 ms
102,528 KB
evil02.txt AC 100 ms
102,272 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import collections
n=int(input())
a=list(map(int,input().split()))
a=collections.Counter(a)
a=list(a.values())
print(a.count(1))
0