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

Tests(0/10):


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


测评信息: