Submission #804007

# Submission time Handle Problem Language Result Execution time Memory
804007 2023-08-03T06:50:52 Z Dan4Life Ideal city (IOI12_city) C++17
0 / 100
6 ms 492 KB
#include <bits/stdc++.h>
using namespace std;
using  ll = long long;
const ll MOD = (ll)1e9;

int DistanceSum(int N, int *X, int *Y) {
    ll 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++){
        ans+=(1ll*Y[i]*i-tot+MOD)%MOD;
        tot+=Y[i], tot%=MOD;
    }
    return (int)ans;
}
# Verdict Execution time Memory Grader output
1 Incorrect 0 ms 212 KB Output isn't correct
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 1 ms 212 KB Output isn't correct
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 5 ms 468 KB Output isn't correct
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 6 ms 492 KB Output isn't correct
2 Halted 0 ms 0 KB -