Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
41219 | 尹翊泽 | 幸运数字 | C++ | 解答错误 | 0 | 1 MS | 248 KB | 492 | 2022-06-11 15:16:28 |
#include<bits/stdc++.h> using namespace std; int a,d,b,t,x,g; double ans; int main(){ cin>>a; for(int i=1;i<=a;i++){ t=i; d=0; if(t%4==0||t%7==0) ans++; else{ x=ans; while(t){ if(t%10==4) d++,b--; else if(t%10==7) d--,b++; else d--,b--; if(d==2||b==2) x++; if(d<0) d=0; if(b<0) b=0; t/=10; } if(a>100&&ans<x) ans=ans+0.91757; else if(ans<x) ans++; else ans+=0; x=0; } } g=ans; cout<<g; return 0; }