#define fast ios_base::sync_with_stdio(0),cin.tie(0),cout.tie(0)
#include <bits/stdc++.h>
using namespace std;
#define sqr 340
#define mid (l+r)/2
#define pb push_back
#define ppb pop_back
#define fi first
#define se second
#define lb lower_bound
#define ub upper_bound
#define ins insert
#define era erase
#define C continue
#define mem(dp,i) memset(dp,i,sizeof(dp))
#define mset multiset
typedef long long ll;
typedef short int si;
typedef long double ld;
typedef pair<int,int> pi;
typedef pair<ll,ll> pll;
typedef vector<int> vi;
typedef vector<ll> vll;
typedef vector<pi> vpi;
typedef vector<pll> vpll;
const ll mod=1e9+7;
const ll inf=1e18;
const ld pai=acos(-1);
int l,r;
int sum[10000009];
int main(){
cin>>l>>r;
for(int i=1;i<=1e7;i++){
for(int j=i*2;j<=1e7;j+=i){
sum[j]+=i;
}
}
ll ans=0;
for(int i=l;i<=r;i++){
ans+=abs(i-sum[i]);
}
cout<<ans<<endl;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
1366 ms |
39544 KB |
Output is correct |
2 |
Correct |
1374 ms |
39544 KB |
Output is correct |
3 |
Correct |
1391 ms |
39504 KB |
Output is correct |
4 |
Correct |
1363 ms |
39504 KB |
Output is correct |
5 |
Correct |
1405 ms |
39544 KB |
Output is correct |
6 |
Correct |
1380 ms |
39416 KB |
Output is correct |
7 |
Correct |
1407 ms |
39544 KB |
Output is correct |
8 |
Correct |
1338 ms |
39544 KB |
Output is correct |