C ++ 389字节
#include <iostream>
#include <boost/multiprecision/cpp_int.hpp>
#include <boost/multiprecision/miller_rabin.hpp>
using namespace boost::random;typedef boost::multiprecision::cpp_int Z;int main(int,char**v){mt19937 m(clock());independent_bits_engine<mt11213b,256,Z>g(m);Z n{v[1]},p;while(p++<=n)if(miller_rabin_test(p,25,g)&&p.convert_to<std::string>().find( "666" )!=-1)std::cout<<p<<" ";}
这是一个完整的程序!
您将需要Boost进行编译。(或复制并粘贴到您最喜欢的在线C ++ shell中。)
从命令行运行它,并以n作为参数。
取消高尔夫:
#include <iostream>
#include <boost/multiprecision/cpp_int.hpp>
#include <boost/multiprecision/miller_rabin.hpp>
using namespace boost::random;
typedef boost::multiprecision::cpp_int integer;
int main( int argc, char** argv )
{
mt19937 mt( clock() );
independent_bits_engine <mt11213b, 256, integer> rng( mt );
integer input {argv[ 1 ]};
integer possible;
while (possible++ <= input)
if (
// is_prime( possible )
miller_rabin_test( possible, 25, rng )
&&
// possible has "666" in it
(possible.convert_to <std::string> ().find( "666" ) != std::string::npos))
std::cout << possible << " ";
}
捷径是根据随机数测试得出的。原始代码从6661开始测试可能的素数,并加2。您还会收到编译器警告,因为那里是(-1)而不是npos。
不过,这运行得很快。在我的旧AMD Sempron 130上,仅用了大约40秒的时间就找到了所有1,000,000以下的214撒旦素数。
:^ D
output the nth satan prime
挑战……