# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
75087 | charlies_moo | Savrsen (COCI17_savrsen) | C++17 | 2198 ms | 39912 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <iostream>
#include <cmath>
using namespace std;
int main() {
int p[4000];
int pc = 0;
for (int i = 2; i < 4000; i++) {
bool f = true;
for (int j = 0; j < pc; j++) {
if (i % p[j] == 0) {
f = false;
break;
}
}
if (f) {
p[pc++] = i;
}
}
int a, b;
cin >> a >> b;
int f[b+1];
f[1] = 1;
for (int i = 2; i <= b; i++) {
int q = 0;
for (int j = 0; j < pc; j++) {
if (i % p[j] == 0) {
q = p[j];
break;
}
}
if (q) {
int t = q, s = 1;
while (i % t == 0) {
s += t;
t *= q;
}
t /= q;
f[i] = s * f[i/t];
} else {
f[i] = i + 1;
}
}
long long ans = 0;
for (int i = a; i <= b; i++) {
ans += abs(f[i] - i - i);
}
cout << ans << endl;
return 0;
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |