| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 56994 | 梅煦洋 | 迟到的生日 | C++ | Wrong Answer | 0 | 0 MS | 244 KB | 302 | 2022-08-03 17:26:22 |
#include<bits/stdc++.h> using namespace std; const int mod=1e9+7; long long sum=0; int main(){ int n,m; cin>>n>>m; for(int i=n;i<=m;i++){ int x; x=i; for(int j=1;j<=x/j;j++){ if(x%j==0){ x/=j; sum++; if(x!=j) sum++; } } } cout<<sum<<endl; return 0; }