Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
19968 | 桑迪 | 幸运数字 | C++ | 解答错误 | 0 | 1 MS | 252 KB | 314 | 2021-05-27 20:08:11 |
#include<bits/stdc++.h> using namespace std; int n,ans,si,tw; int main(){ cin>>n; for(int i=1;i<=n;i++){ if(i%4==0||i%7==0) { ans++; }else{ si=i,tw=0; while(si){ tw=(tw/10)*10+si%10,si/=10; if(!(tw-44)||!(tw-77)){ ans++; } } } } cout<<ans; return 0; }