#include <bits/stdc++.h>
using namespace std;
using ll = long long;
const ll MOD = (ll)1000000000;
int DistanceSum(int N, int *X, int *Y) {
int ans = 0, tot = 0;
sort(X,X+N), sort(Y,Y+N);
for(int i = 0; i < N; i++){
ans+=(1ll*X[i]*i-tot+MOD)%MOD;
tot+=X[i], tot%=MOD;
}
tot = 0;
for(int i = 0; i < N; i++){
swap(X[i],Y[i]);
ans+=(1ll*X[i]*i-tot+MOD)%MOD;
tot+=X[i], tot%=MOD;
swap(X[i],Y[i]);
}
return (int)ans;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
0 ms |
212 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
1 ms |
212 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
5 ms |
468 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
5 ms |
468 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |