이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#define pb push_back
#define sz(x) (int)x.size()
#define all(x) x.begin(), x.end()
#define f first
#define s second
using namespace std;
using ll = long long;
using pii = pair <int, int>;
const int N = 2e3 + 5;
int h, v, x[N], y[N];
int main() {
ios :: sync_with_stdio(0);
cin.tie(0);
cin >> h >> v;
map <int, int> cnt;
for (int i = 1; i <= h; ++i) {
cin >> x[i];
for (int j = i - 1; j > 0; j--) {
cnt[x[i] - x[j]]++;
}
}
int ans = 0;
for (int i = 1; i <= v; ++i) {
cin >> y[i];
for (int j = i - 1; j > 0; j--) {
ans += cnt[y[i] - y[j]];
}
}
cout << ans;
return 0;
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |