| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 145001 | 杨润东 | 属相 | C++ | Wrong Answer | 0 MS | 276 KB | 482 | 2026-01-24 20:02:45 |
#include<iostream> // cin\cout\endl #include<cstdio> //scanf()\printf() #include<cstring> // strcpy()\strcat()\strcmp()\strlen()\memset() #include<cmath> //sqrt()\pow()\abs()\ceil()\floor()\max()\min() using namespace std; int main(){ int n,s=0,x=0; cin>>n; for(int i=1;i<=n;i++){ if(i%7==0){ s++; } if(i%10==7){ s++; } if(i%7==0&&i%10==7){ x++; } } cout<<s-x; return 0; }
------Input------
5 2
------Answer-----
Mouse
------Your output-----
0