| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 56999 | 桑迪 | 迟到的生日 | C++ | Time Limit Exceeded | 50 | 1000 MS | 248 KB | 247 | 2022-08-03 17:29:29 |
#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++){ if(shu%j==0){ ans++; } } }cout<<ans; return 0; }