#include <cmath> #include <bitset> using namespace std; vector<int> sieveOfEratosthenes(int n) { // n+1 크기의 부울 배열을 만듭니다. // 처음에는 모든 항목을 true로 설정합니다. // i가 소수가 아니면 prime[i]의 값은...