# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
9806 | kkjjkk | Uniting (kriii2_U) | C++98 | 12 ms | 2456 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 <algorithm>
#include <iostream>
#include <cstdio>
using namespace std;
long long h[100005], m = 1000000007;
int main()
{
int n;
scanf("%d", &n);
for(int i = 0; i < n; i++) scanf("%lld", &h[i]);
if(n == 1) { printf("0\n"); printf("1"); }
else if(n == 2) { printf("%lld\n", h[0] * h[1]); printf("2"); }
else {
long long a = h[0] + h[1];
long long b = h[0] * h[1];
long long c, s = 1;
for(int i = 2; i < n; i++) {
c = a * h[i];
a += h[i]; b += c;
}
printf("%lld\n", b);
for(int i = 2; i <= n; i++) { s *= i * (i - 1); s %= m; }
printf("%lld", s);
}
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |