Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
145718 | 於子轩bylz | 求素数 | C++ | 解答错误 | 0 | 0 MS | 360 KB | 387 | 2024-05-05 16:52:35 |
#include<bits/stdc++.h> #pragma GCC optimize(3) using namespace std; const int N=1e5+10; const int INF=0x3f3f3f3f; bool a[N]; int main() { ios::sync_with_stdio(0); cin.tie(0); cout.tie(0); for(int i=2;i<=1000;++i) { if(a[i]==0) { cout<<i<<" "; for(int j=i+i;j<=100000;j+=i) { a[j]=1; } } } return 0; }