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<bits/stdc++.h>
using namespace std;
long long h[200005];
long long w[200005];
long long md=1e9+7;
struct block{
long long h,w;
block(long long hh=0,long long ww=0){
h=hh;
w=ww;
}
};
long long calc(block x){
long long ans=x.h*(x.h+1)/2;
ans%=md;
long long ans1=x.w*(x.w+1)/2;
ans1%=md;
long long ans2=(ans*ans1)%md;
return ans2;
}
int main(){
ios_base::sync_with_stdio(false);
cin.tie(0);
int n;
cin>>n;
for(int i=1;i<=n;i++){
cin>>h[i];
}
long long aw=0;
for(int i=1;i<=n;i++){
cin>>w[i];
aw+=w[i];
}
cout<<calc(block(h[1],aw));
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |