Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
9744 | 杨晓铮 | 失踪的7 | C++ | 解答错误 | 0 | 0 MS | 252 KB | 284 | 2020-11-18 18:54:08 |
#include<bits/stdc++.h> using namespace std; int main(){ int ans,n,fu=0,shu,fu1=0; cin>>n; while(n--){ cin>>shu; ans=shu; for(int i=1;i<=shu;i++){ fu=i; if(fu%10==7){ ans--; continue; } fu/=10; if(fu<0)continue; } cout<<ans; } }