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

Tests(6/10):


#include"bits/stdc++.h" using namespace std; int s[1000000]; int sd(int x){ 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(i%7==0||sd(i)){ s[ans]=i; ans++; } } cout<<ans<<endl; for(int i=0;i<ans;i++){ cout<<s[i]<<endl; }}


测评信息: