Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
90836 | 梁敖铭 | 判断素数II | C++ | Wrong Answer | 0 MS | 196 KB | 395 | 2024-09-16 20:43:19 |
#include <stdio.h> #include <math.h> using namespace std; bool isPrime(int t) { bool flag=true; for(int j=2;j<=sqrt(t);j++) { if(t%j==0) { flag=false; break; } } return flag; } int main() { long long n; scanf("%d",&n); for(int i=2;i<=n;i++) { if(isPrime(i)) { printf("%d\t",i); } } return 0; }
------Input------
302
------Answer-----
62
------Your output-----
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 271 277 281 283 293