| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 1310 | 李思贤 | 幸运数字 | C++ | Wrong Answer | 0 | 0 MS | 256 KB | 160 | 2019-10-06 19:25:05 |
#include<iostream> int main(){ int a,b,i; scanf("%d %d",&a,&b); while(a<=b){ if(a%8==0||a%6==0) i=i+1; a=a+1; } printf("%d",i); return 0; }