結果

問題 No.182 新規性の虜
ユーザー Navier_BoltzmannNavier_Boltzmann
提出日時 2024-02-25 00:19:06
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 87 ms / 5,000 ms
コード長 248 bytes
コンパイル時間 164 ms
コンパイル使用メモリ 81,700 KB
実行使用メモリ 100,300 KB
最終ジャッジ日時 2024-02-25 00:19:11
合計ジャッジ時間 3,595 ms
ジャッジサーバーID
(参考情報)
judge12 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
55,604 KB
testcase_01 AC 45 ms
55,604 KB
testcase_02 AC 45 ms
55,604 KB
testcase_03 AC 44 ms
55,604 KB
testcase_04 AC 45 ms
55,604 KB
testcase_05 AC 44 ms
55,604 KB
testcase_06 AC 47 ms
55,604 KB
testcase_07 AC 46 ms
55,604 KB
testcase_08 AC 73 ms
85,064 KB
testcase_09 AC 87 ms
98,220 KB
testcase_10 AC 80 ms
94,392 KB
testcase_11 AC 74 ms
89,344 KB
testcase_12 AC 59 ms
73,348 KB
testcase_13 AC 45 ms
55,604 KB
testcase_14 AC 45 ms
55,604 KB
testcase_15 AC 45 ms
55,604 KB
testcase_16 AC 45 ms
55,604 KB
testcase_17 AC 44 ms
55,604 KB
testcase_18 AC 71 ms
82,772 KB
testcase_19 AC 67 ms
79,232 KB
testcase_20 AC 62 ms
73,864 KB
testcase_21 AC 72 ms
84,308 KB
testcase_22 AC 66 ms
75,384 KB
testcase_23 AC 45 ms
55,604 KB
testcase_24 AC 84 ms
100,300 KB
testcase_25 AC 66 ms
82,696 KB
testcase_26 AC 52 ms
66,880 KB
testcase_27 AC 44 ms
55,604 KB
evil01.txt AC 97 ms
105,936 KB
evil02.txt AC 96 ms
105,936 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import *
from itertools import *
from functools import *
from heapq import *
import sys, math

input = sys.stdin.readline


N = int(input())
A = list(map(int, input().split()))
C = Counter(A)
print(sum(v == 1 for v in C.values()))
0