結果

問題 No.182 新規性の虜
ユーザー あかりきあかりき
提出日時 2021-02-12 12:24:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 133 ms / 5,000 ms
コード長 128 bytes
コンパイル時間 315 ms
コンパイル使用メモリ 87,032 KB
実行使用メモリ 106,280 KB
最終ジャッジ日時 2023-09-26 12:02:22
合計ジャッジ時間 5,642 ms
ジャッジサーバーID
(参考情報)
judge15 / judge12
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 88 ms
71,564 KB
testcase_01 AC 89 ms
71,756 KB
testcase_02 AC 94 ms
71,824 KB
testcase_03 AC 91 ms
71,456 KB
testcase_04 AC 90 ms
71,584 KB
testcase_05 AC 89 ms
71,908 KB
testcase_06 AC 90 ms
71,632 KB
testcase_07 AC 91 ms
71,740 KB
testcase_08 AC 117 ms
92,876 KB
testcase_09 AC 133 ms
103,876 KB
testcase_10 AC 128 ms
100,384 KB
testcase_11 AC 121 ms
95,168 KB
testcase_12 AC 106 ms
82,224 KB
testcase_13 AC 91 ms
71,628 KB
testcase_14 AC 93 ms
71,776 KB
testcase_15 AC 90 ms
71,832 KB
testcase_16 AC 92 ms
71,696 KB
testcase_17 AC 91 ms
71,632 KB
testcase_18 AC 114 ms
87,840 KB
testcase_19 AC 111 ms
83,712 KB
testcase_20 AC 106 ms
80,788 KB
testcase_21 AC 120 ms
89,384 KB
testcase_22 AC 110 ms
81,972 KB
testcase_23 AC 91 ms
71,896 KB
testcase_24 AC 133 ms
106,280 KB
testcase_25 AC 115 ms
89,820 KB
testcase_26 AC 102 ms
77,808 KB
testcase_27 AC 91 ms
71,640 KB
evil01.txt AC 134 ms
107,476 KB
evil02.txt AC 134 ms
107,460 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