| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 9709 | 孙喻桐 | 乐乐的幸运数 | C++ | Accepted | 100 | 0 MS | 252 KB | 181 | 2020-11-18 18:47:53 |
#include<bits/stdc++.h> using namespace std; int main(){ int m,n; int ans=0; cin>>m>>n; for(int i=m;i<=n;i++){ if(i%6==0||i%8==0)ans++; } cout<<ans; return 0; }