# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
184103 | Zelja | Savrsen (COCI17_savrsen) | C++14 | 2069 ms | 78752 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>
using namespace std;
long long d[10000018],r;
int A,B;
int main()
{
ios_base::sync_with_stdio(false);
cin.tie(0);
cin >> A >> B;
for(int i = 1; i <= B; i++){
for(int j = 2*i; j <= B; j+=i)
d[j] += i;
}
for(int i = A; i <= B; i++){
r += abs(i - d[i]);
}
cout << r;
return 0;
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |