Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
145767 | 龚梓嘉 | 求素数 | C++ | 通过 | 100 | 1 MS | 368 KB | 389 | 2024-05-05 17:06:21 |
#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<=100000;++i) { if(a[i]==0) { cout<<i<<" "; for(int j=i+i;j<=100000;j+=i) { a[j]=1; } } } return 0; }