@@ -13,7 +13,7 @@ bool lucasLehmerTest(long long p) {
if(p==2)returntrue;// M_2 = 3, простое число
// Вычисляем M_p = 2^p - 1
longlongM_p=(1LL<<p)-1;// 1LL << p эквивалентно 2^p
longlongM_p=pow(2,p)-1;
// Начальное значение s
longlongs=4;
Reference in New Issue
Block a user
Blocking a user prevents them from interacting with repositories, such as opening or commenting on pull requests or issues. Learn more about blocking a user.