Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
46130 石利伟 幸运数字 C++ 解答错误 0 1 MS 248 KB 558 2022-07-12 18:33:33

Tests(0/5):


#include<bits/stdc++.h> using namespace std; long long n,ans,i1,temp; bool flag=false; int main(){ cin>>n; for(int i=1;i<=n;i++){ i1=i; if(i%4==0&&temp!=i){ flag=true; ans++; temp=i; } else if(i%7==0&&temp!=i){ flag=true; ans++; temp=i; } while(i1/10>=10 && flag==false && temp!=i){ if((i1%10)==4&&(i1/10)%10==4 && temp!=i){ ans++; temp=i; } else if((i1%10)==7&&(i1/10)%10==7 && temp!=i){ ans++; temp=i; } i1/=10; } flag=false; } cout<<ans; return 0; }


测评信息: