結果

問題 No.182 新規性の虜
ユーザー Navier_BoltzmannNavier_Boltzmann
提出日時 2024-02-25 00:19:06
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 92 ms / 5,000 ms
コード長 248 bytes
コンパイル時間 198 ms
コンパイル使用メモリ 82,368 KB
実行使用メモリ 100,736 KB
最終ジャッジ日時 2024-09-29 10:28:01
合計ジャッジ時間 3,869 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
55,040 KB
testcase_01 AC 47 ms
54,912 KB
testcase_02 AC 54 ms
55,424 KB
testcase_03 AC 48 ms
55,296 KB
testcase_04 AC 46 ms
55,424 KB
testcase_05 AC 47 ms
54,912 KB
testcase_06 AC 52 ms
55,040 KB
testcase_07 AC 53 ms
55,040 KB
testcase_08 AC 76 ms
85,120 KB
testcase_09 AC 92 ms
98,176 KB
testcase_10 AC 86 ms
94,336 KB
testcase_11 AC 79 ms
87,936 KB
testcase_12 AC 64 ms
73,344 KB
testcase_13 AC 46 ms
54,784 KB
testcase_14 AC 47 ms
55,296 KB
testcase_15 AC 53 ms
55,296 KB
testcase_16 AC 48 ms
55,552 KB
testcase_17 AC 47 ms
55,296 KB
testcase_18 AC 74 ms
81,664 KB
testcase_19 AC 71 ms
77,568 KB
testcase_20 AC 65 ms
72,576 KB
testcase_21 AC 76 ms
83,328 KB
testcase_22 AC 67 ms
75,008 KB
testcase_23 AC 48 ms
54,784 KB
testcase_24 AC 90 ms
100,736 KB
testcase_25 AC 69 ms
81,408 KB
testcase_26 AC 57 ms
66,688 KB
testcase_27 AC 49 ms
54,784 KB
evil01.txt AC 100 ms
106,240 KB
evil02.txt AC 103 ms
105,856 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