| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 1598 | 梅煦洋 | 幸运数字 | C++ | Accepted | 100 | 0 MS | 256 KB | 163 | 2019-10-13 22:07:49 |
#include<iostream> int main(){ int a,s,q=0; scanf("%d %d",&s,&a); while(s<=a){ if(s%6==0||s%8==0) q=q+1; s=s+1; } printf("%d",q); return 0; }