| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 13936 | 孙喻桐 | 统计整除数字的个数 | C++ | Accepted | 100 | 4 MS | 248 KB | 168 | 2021-02-05 08:58:31 |
#include<bits/stdc++.h> using namespace std; int m,n,a,ans; int main(){ cin>>m>>n>>a; for(int i=m;i<=n;i++){ if(i%a==0) ans++; } cout<<ans; return 0; }