From 57d767cf4e4d5b83645bda2c4e398fdd76d059e1 Mon Sep 17 00:00:00 2001 From: Raphael McSinyx Date: Mon, 2 Jan 2017 20:37:59 +0700 Subject: Update others/easy20160714 --- others/easy20160714/23.c | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 others/easy20160714/23.c (limited to 'others/easy20160714/23.c') diff --git a/others/easy20160714/23.c b/others/easy20160714/23.c new file mode 100644 index 0000000..8a3ec01 --- /dev/null +++ b/others/easy20160714/23.c @@ -0,0 +1,33 @@ +#include +#include + +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; +} -- cgit 1.4.1