Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
41400 | 安一宸 | 幸运数字 | C++ | 通过 | 100 | 9 MS | 252 KB | 324 | 2022-06-11 18:49:26 |
#include <bits/stdc++.h> using namespace std; int n,ans; bool check(int x){ if(x%4==0||x%7==0){ return true; } while(x){ if(x%100==44||x%100==77){ return true; } x/=10; } return false; } int main(){ cin>>n; for(int i=1;i<=n;i++){ if(check(i)){ ans++; } } cout<<ans<<endl; }