-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnastya_array.cpp
51 lines (40 loc) · 1010 Bytes
/
nastya_array.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
/* Universidade de Brasília
* Departamento de Ciência da Computação
* CIC0169 - Programação Competitiva
* Prof. Dr. Vinicius R. P. Borges
*
* Tópico: Fundamentos de Linguagem C/C++
* Aula: Resolucao do problema
* Codeforces Round #489 (Div. 2) - A. Nastya and an Array (https://codeforces.com/contest/992/problem/A)
*
* POR FAVOR: nao submeter esse código-fonte diretamente no Codeforces
*
* Compilar no terminal: g++ nastya_array.cpp -std=c++11 -o nastya
* Executar: ./nastya
*/
#include<bits/stdc++.h>
using namespace std;
int main()
{
int n,a,ans;
vector<int> v;
scanf("%d",&n);
for(int i = 0; i < n; i++)
{
scanf("%d",&a);
v.push_back(a);
}
sort(v.begin(),v.end());
ans = 0;
if(v[0])
ans++;
for(int i = 1; i < v.size(); i++)
{
if(v[i] && v[i-1] != v[i])
{
ans++;
}
}
printf("%d\n",ans);
return 0;
}