제출 #238032

#제출 시각아이디문제언어결과실행 시간메모리
238032marlicuSavrsen (COCI17_savrsen)C++14
0 / 120
114 ms504 KiB
#include <bits/stdc++.h>

using namespace std;

int main() {
    ios_base::sync_with_stdio(false);
    cin.tie(0); cout.tie(0);

    int a, b;
    cin >> a >> b;

    long long pozitivni = 0;
    long long negativni = 0;

    for (int i = 1; i <= b; i++) {
        if (i >= a) pozitivni += i;

        int k = (b - i) / i;
        negativni += (i * k);

        /*
        cout << i << " " << pozitivni << " ";
        cout << negativni << " " << k << " ";
        cout << (i * k) << '\n';
        */
    }

    //cout << ":::\n";

    for (int i = 1; i < a; i++) {
        int k = (a - 1 - i) / i;
        negativni -= (i * k);

        /*
        cout << i << " " << pozitivni << " ";
        cout << negativni << " " << k << " ";
        cout << (i * k) << '\n';
        */
    }

    cout << abs(pozitivni - negativni);

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