| Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|
| 77454 | sh25_shenpy | 埃氏筛法求区间质数 | C++ | Wrong Answer | 0 MS | 240 KB | 257 | 2025-12-25 22:04:09 |
#include<bits/stdc++.h> using namespace std; int main(){ int n,s=0; cin>>n; for(int i=2;i<=n;++i){ for(int j=2;j<n;++j){ if(i%j==0) ++s; } if(s==0) cout<<i<<" "; s=0; } return 0; }