# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
4177 | hsswill | Inherited disease (kriii1_I) | C++98 | 0 ms | 1088 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include<stdio.h>
#define BIGNUM 1000000007
int main(void)
{
FILE *fi = stdin;
long long sum = 0, num[110], start, temp, d, i, j;
fscanf(fi,"%lld",&d);
for(i = 0; i < d; i++)
fscanf(fi,"%lld",&num[i]);
start = 1;
temp = 2;
for(i = 0; i < d; i++)
num[i]--;
printf("1\n");
for(i = 1; i < d; i++)
{
sum = 0;
for(j = 1; j <= i; j++)
sum += num[j], sum %= BIGNUM;
printf("%lld\n",(start%BIGNUM+sum%BIGNUM+1%BIGNUM)%BIGNUM);
start += temp;
start %= BIGNUM;
temp *= (i+2);
temp %= BIGNUM;
for(j = 1; j <= i; j++)
num[j] *= (i+2), num[j] %= BIGNUM;
}
return 0;
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |