結果

問題 No.182 新規性の虜
ユーザー rlangevinrlangevin
提出日時 2023-07-01 23:17:17
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 140 ms / 5,000 ms
コード長 164 bytes
コンパイル時間 311 ms
コンパイル使用メモリ 87,272 KB
実行使用メモリ 105,440 KB
最終ジャッジ日時 2023-09-22 17:49:27
合計ジャッジ時間 5,607 ms
ジャッジサーバーID
(参考情報)
judge12 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 93 ms
71,176 KB
testcase_01 AC 94 ms
71,588 KB
testcase_02 AC 97 ms
71,436 KB
testcase_03 AC 94 ms
71,652 KB
testcase_04 AC 93 ms
71,596 KB
testcase_05 AC 94 ms
71,436 KB
testcase_06 AC 91 ms
71,440 KB
testcase_07 AC 94 ms
71,328 KB
testcase_08 AC 122 ms
92,560 KB
testcase_09 AC 140 ms
103,124 KB
testcase_10 AC 139 ms
100,156 KB
testcase_11 AC 126 ms
94,676 KB
testcase_12 AC 112 ms
82,288 KB
testcase_13 AC 93 ms
71,392 KB
testcase_14 AC 94 ms
71,664 KB
testcase_15 AC 92 ms
71,544 KB
testcase_16 AC 92 ms
71,676 KB
testcase_17 AC 94 ms
71,584 KB
testcase_18 AC 120 ms
87,952 KB
testcase_19 AC 114 ms
84,040 KB
testcase_20 AC 112 ms
80,780 KB
testcase_21 AC 121 ms
89,772 KB
testcase_22 AC 114 ms
81,976 KB
testcase_23 AC 93 ms
71,700 KB
testcase_24 AC 133 ms
105,440 KB
testcase_25 AC 114 ms
89,352 KB
testcase_26 AC 102 ms
77,996 KB
testcase_27 AC 94 ms
71,176 KB
evil01.txt AC 137 ms
106,668 KB
evil02.txt AC 141 ms
106,640 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import *

N = int(input())
A = Counter(list(map(int, input().split())))
ans = 0
for k, v in A.items():
    if v == 1:
        ans += 1
print(ans)

0