| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 57006 | 桑迪 | 迟到的生日 | C++ | Time Limit Exceeded | 50 | 1000 MS | 248 KB | 273 | 2022-08-03 17:32:05 |
#include<bits/stdc++.h> using namespace std; long long shu=1; int n,ans,al,t1,t2; int main(){ cin>>t1>>t2; for(int i=t1;i<=t2;i++){ shu=i; for(int j=1;j<=shu/j;j++){ if(shu%j==0){ ans++; if(shu/j!=j)ans++; } } }cout<<ans; return 0; }