Submission #856109

#TimeUsernameProblemLanguageResultExecution timeMemory
856109vjudge1Savrsen (COCI17_savrsen)C++17
120 / 120
812 ms78696 KiB
//author: Ahmet Alp Orakci
#include <bits/stdc++.h>
using namespace std;
using i64 = long long int;

const int MAXN = 1E7 + 5;

i64 res[MAXN];

void precalc() {
    for(int i = 1; i < MAXN; i++) {
        for(int j = i; j < MAXN; j += i) {
            res[j] += i;
        }
    }
}

#define ONLINE_JUDGE
void solve() {
    int a, b;
    cin >> a >> b;

    i64 ans = 0;
    for(int i = a; i <= b; i++)
        ans += abs(res[i] - 2 * i);

    cout << ans;
    
    return;
}

signed main() {
    #ifndef ONLINE_JUDGE
        freopen(".in", "r", stdin);
        freopen(".out", "w", stdout);
    #endif

    precalc();

    ios_base::sync_with_stdio(false);
    cin.tie(NULL); cout.tie(NULL);

    int t = 1; //cin >> t;
    for(int i = 1; i <= t; i++) {
        solve();
    }

    return 0;
}
#Result Execution timeMemoryGrader output
Fetching results...