#include <bits/stdc++.h>
#define int long long
#define rep(i,n) for(int i = 0; i < n; i++)
#define int long long
using namespace std;
signed main(){
int n, m;
cin>>n>>m;
vector<int>ver(n);
vector<int>hor(n);
rep(i,n){cin>>ver[i];}
rep(i,m){cin>>hor[i];}
map<int, int>vertDif;
map<int, int>horDif;
rep(i, n){
for(int j=i+1; j<n; i++){
vertDif[ver[j]-ver[i]]++;
}
}
rep(i, m){
for(int j=i+1; j<m; i++){
horDif[hor[j]-hor[i]]++;
}
}
int sum=0;
for(auto k : vertDif){
sum+=k.second*horDif[k.first];
}
cout<<sum;
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
1 ms |
256 KB |
Output is correct |
2 |
Execution timed out |
4067 ms |
118920 KB |
Time limit exceeded |
3 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
1 ms |
256 KB |
Output is correct |
2 |
Execution timed out |
4067 ms |
118920 KB |
Time limit exceeded |
3 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
1 ms |
256 KB |
Output is correct |
2 |
Execution timed out |
4067 ms |
118920 KB |
Time limit exceeded |
3 |
Halted |
0 ms |
0 KB |
- |