Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
56954 | 陈万瑄 | 迟到的生日 | C++ | 运行超时 | 50 | 1000 MS | 260 KB | 342 | 2022-08-03 17:11:30 |
#include<bits/stdc++.h> using namespace std; int m,n; long long ans; int f(int x){ int res=1; map<int,int> t; for(int i=2;i<=x/i;i++){ while(x%i==0) x/=i,t[i]++; } if(x!=1) t[x]++; for(auto temp:t) res*=temp.second+1; return res; } int main(){ cin>>m>>n; for(int i=m;i<=n;i++) ans+=f(i); cout<<ans; return 0; }