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
|
#include <stdio.h>
#include <stdlib.h>
int cmp(const void *x, const void *y)
{
return *(int *) x - *(int *) y;
}
int main()
{
FILE *f = fopen("INP.TXT", "r");
int n, i, *a, r = 1;
fscanf(f, "%d", &n);
a = malloc(n * sizeof(int));
for (i = 0; i < n; i++)
fscanf(f, "%d", a + i);
fclose(f);
qsort(a, n, sizeof(int), cmp);
for (i = 1; i < n; i++)
if (a[i] > a[i - 1])
r++;
f = fopen("OUT.TXT", "w");
fprintf(f, "%d\n", r);
fclose(f);
return 0;
}
|