Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
57055 | 孙喻桐 | 迟到的生日 | C++ | 解答错误 | 0 | 0 MS | 244 KB | 292 | 2022-08-03 17:48:19 |
#include<bits/stdc++.h> using namespace std; int t,t1,ans=1,n; int main(){ cin>>t>>t1; for(int i=t;i<=t1;i++){ int m,s; m=i; s=0; for(int j=2;j<=sqrt(m);j++){ if(m%j==0){ while(m%j==0) m/=j,s++; } ans*=(s+1); } n+=ans; } cout<<n-1; return 0; }