Run ID 作者 问题 语言 测评结果 时间 内存 代码长度 提交时间
23767 yihang game C++ 运行超时 1000 MS 4636 KB 422 2023-07-16 17:16:27

Tests(6/10):


#include"bits/stdc++.h" using namespace std; long long s[1000000]; int sd(int x){ if(x%7==0)return true; while(x){ if(x%10==7){ return true;} x/=10;} return false;} int main(){ ios::sync_with_stdio(false); cin.tie(0); cout.tie(0); int n,m,ans=0; cin>>n>>m; for(int i=n;i<=m;i++){ if(sd(i)){ s[i]=i; ans++;} } cout<<ans<<endl; for(int i=n;i<=m;i++){ if(s[i]!=0)cout<<s[i]<<endl; }}


测评信息: