Run ID 作者 问题 语言 测评结果 时间 内存 代码长度 提交时间
41018 liusiyu 输出N以内的素数 C++ 解答错误 45 MS 244 KB 209 2024-02-18 16:20:49

Tests(0/1):


#include<bits/stdc++.h> using namespace std; int main() { int m; cin>>m; cout<<2<<endl<<3<<endl; for(int j=4;j<=m;j++){ if(j%2!=0&&j%3!=0&&j%7!=0){ cout<<j<<endl; } } return 0; }


测评信息:

输入

4999

输出

2
3
5
11
13
17
19
23
25
29
31
37
41
43
47
53
55
59
61
65
67
71
73
79
83
85
89
95
97
101
103
107
109
113
115
121
125
127
131
137
139
143
145
149
151
155
157
163
167
169
173
179
181
185
187
191
193
197

答案

2
3
5
7
11
13
17
19
23
29
31
37
41
43
47
53
59
61
67
71
73
79
83
89
97
101
103
107
109
113
127
131
137
139
149
151
157
163
167
173
179
181
191
193
197
199
211
223
227
229
233
239
241
251
257
263
269
...

系统信息

exit code: 0, checker exit code: 0