# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
18598 | eaststar | Inherited disease (kriii1_I) | C++14 | 0 ms | 1084 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 M 1000000007
int main(){
int i,n,k;
long long s=0,t=1,u=0;
scanf("%d",&n);
for(i=1;i<=n;++i){
scanf("%d",&k);
u=(u*i+k-1)%M;
printf("%d\n",(s+u+1)%M);
t=t*i%M;
s=(s+t)%M;
}
return 0;
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |