# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
947516 | Blagoj | Savrsen (COCI17_savrsen) | C++17 | 3068 ms | 428 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include <bits/stdc++.h>
#pragma GCC target("avx2")
#pragma GCC optimize("O3")
#pragma GCC optimize("Ofast,unroll-loops")
using namespace std;
#define endl '\n'
#define ll long long
#define all(x) (x).begin(), (x).end()
int main() {
ios_base::sync_with_stdio(false);
cin.tie(NULL);
ll a, b;
cin >> a >> b;
ll ans = 0;
for (ll i = a; i <= b; i++) {
ll sum = 0;
for (ll j = 1; j * j <= i; j++) {
if (i % j != 0) continue;
ll other = i / j;
if (j < i) sum += j;
if (j != other && other < i) sum += other;
}
ans += abs(i - sum);
}
cout << ans;
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |