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 ++.)
Запустіть її з командного рядка, подаючи 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 та збільшити на два. Ви також отримаєте попередження компілятора через те, що (-1) там замість npos.
Все-таки це працює досить швидко. На моєму старому AMD Sempron 130 знадобилося лише 40 секунд, щоб знайти всі 214 сатанових праймерів під 1 000 000.
: ^ D
output the nth satan prime
завданням ...