blob: 56e5191b75d8ed0508af07aae44fed695673af62 (
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
|
#include <stdio.h>
#include <stdlib.h>
struct range {
int z;
int k;
};
struct range gen_range () {
}
int main (void) {
char * buf = malloc(300000);
fgets(buf, 255, stdin);
fgets(buf, 300000, stdin);
char * c = buf;
int len = 0;
int * a = malloc(10000*sizeof *a);
while (c) {
a[len++] = strtol(c, &c, 10);
c++;
}
unsigned long long int sum;
int z = 0;
int k = 0;
int sqrt
work
if (z == lkl) {
}
printf("%llu\n", sum);
}
|