about summary refs log tree commit diff
path: root/others/easy20160714/28.c
blob: aef9c7a65feae97d1bb74d51290f1e034b9d5a7b (plain) (blame)
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 main()
{
	FILE *f = fopen("INP.TXT", "r");
	int m, n, *a, i, l;

	fscanf(f, "%d %d %d", &m, &n, &i);
	n *= m;
	a = malloc(n * sizeof(int));

	for (i = 0; i < n; i++)
		fscanf(f, "%d", a + i);

	fclose(f);

	l = m = *a;

	for (i = 1; i < n; i++)
		if (a[i] > m)
			m = a[i];

	for (i = 1; i < n; i++)
		if (a[i] < l)
			l = a[i];

	f = fopen("OUT.TXT", "w");
	fprintf(f, "%d\n", m - l);
	fclose(f);

	return 0;
}