이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef pair<ll, ll> pll;
#define X first
#define Y second
const ll MAXN = 1e6 + 10;
const ll MOD = 1000000000;
int n;
vector<pll> vec;
int DistanceSum(int N, int *X, int *Y) {
n = N;
sort(X, X + n);
sort(Y, Y + n);
ll ps = 0, ans = 0;
for (int i = 0; i < n; i++) {
ans = (ans + (1ll * i * X[i] - ps + MOD)) % MOD;
ps = ps + X[i] % MOD;
}
ps = 0;
for (int i = 0; i < n; i++) {
ans = (ans + (1ll * i * Y[i] - ps + MOD)) % MOD;
ps = ps + Y[i] % MOD;
}
return ans % MOD;
}
| # | 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... |