| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 16278 | 贺昱翔 | 统计整除数字的个数 | C++ | Accepted | 100 | 3 MS | 248 KB | 171 | 2021-03-07 11:13:12 |
#include<bits/stdc++.h> using namespace std; int main(){ int m,n,a,ans=0; cin>>m>>n>>a; for(int i=m;i<=n;i++){ if(i%a==0) ans++; } cout<<ans; return 0; }