Submission #946100

#TimeUsernameProblemLanguageResultExecution timeMemory
946100kokoxuyaFancy Fence (CEOI20_fancyfence)C++14
0 / 100
1 ms348 KiB
#include <bits/stdc++.h> using namespace std; #define int long long signed main() { int N,temp1,temp2,zong = 0; cin >> N; for (int a = 1; a <= N; a++) { cin >> temp1; } for (int a = 1; a <= N; a++) { cin >> temp2; zong += temp2; } int ans = (zong + 1) * zong / 2; //cout << "before : " << ans << "\n"; //cout << temp1 << " and " << (temp1 * (temp1 + 1)/2) << "\n"; ans *= (temp1 * (temp1 + 1)/2); cout << (ans % 1000000007); }
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...