제출 #86375

#제출 시각아이디문제언어결과실행 시간메모리
86375dimash241Savrsen (COCI17_savrsen)C++17
120 / 120
1717 ms39780 KiB
#include <iostream>

using namespace std;

int f[10000001];
int a, b;

int main () {
	ios_base::sync_with_stdio(0);
	cin.tie(0);
	cin >> a >> b;
	for (int i = 1; i <= b / 2; ++i) {
		int j = i + i;
		while (j <= b) {
			f[j] += i;
			j += i;
		}
	}

	long long ans = 0;
	for (int i = a; i <= b; ++i)
		ans += abs(f[i] - i);

	cout << ans;
}
#Verdict Execution timeMemoryGrader output
Fetching results...