Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
114219 何思佳 素数检测 C++ Wrong Answer 64 MS 11980 KB 362 2025-03-22 11:14:24

Tests(0/1):


Code:

#include<bits/stdc++.h> using namespace std; int shisushu[3000000]; int main() { for(int i=2; i<=3000000; i++) { if(shisushu[i]==1) { continue; } for(int j=2*i; j<=3000000; j+=i) { shisushu[j]=1; } if(i*i>300000) { break; } } for(int i=2; i<=3000000; i++) { if(shisushu[i]==0) { cout<<i<<" "; } } return 0; }


Run Info:

------Input------
0
------Answer-----
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 307 311 313 317 331 337 347 349 353 359 367 373 379 383 389 397 401 409 419 421 431 433 439 443 449 457 461 463 467 479 487 491 499 503 509 521 523 541 547 557 563 569 571 577 587 593 599 601 607 613 617 619 631 641 643 647 653 659 661 673 677 683 691 701 709 719 727 733 739 743 7
------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 307 311 313 317 331 337 347 349 353 359 367 373 379 383 389 397 401 409 419 421 431 433 439 443 449 457 461 463 467 479 487 491 499 503 509 521 523 541 547 557 563 569 571 577 587 593 599 601 607 613 617 619 631 641 643 647 653 659 661 673 677 683 691 701 709 719 727 733 739 743 7