이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#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 |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |