尤拉函式和費馬小定理(基礎題題解)

2021-07-28 13:14:05 字數 1102 閱讀 6145

太久沒有在blog上記錄學習進度啦,需要認真反思一下,陳老師的話如同醍醐灌頂,複習知識喚醒記憶,擁有乙個屬於自己的blog是一件引以為豪的事情,希望自己做的越來越好吧!加油!

poj 2407 relatives

#include #include using namespace std;

long long phi(long long n)}}

if(n>1)///處理最後乙個數

return res;

}///再此**的基礎上還可以用素數打表將其優化,請大家積極嘗試

int main()}}

if(n>1)

return res;

}int main()

}if(flag)

else

}return 0;

}

hdu2824

打表求尤拉函式

#include #include using namespace std;

const int maxn=3e6+5;

int p[maxn];

int phi()}}

if(n>1)

return res;

}int main()

}return 0;

}

hdu4704

#include #include #include #include using namespace std;

const int maxn=1e5+5;

const long long mod=1e9+7;

char str[maxn];

long long a=0;

void change()

return ans;

}int main()

return ans;

}ll getmod(char st)

{ ll ret = 0;

int len = strlen(st);

for(int i=0; i>str)

{ll tmp = getmod(str);

cout<

費馬小定理和尤拉定理

先拓展一下威爾遜定理 如果p是素數,則 p 1 1 mod p 例 p 11,10 1 2 6 3 4 5 9 7 8 10 1 10 1 mod 11 測試 includeusing namespace std typedef long long ll const int mod 1e5 7 給出...

費馬小定理 尤拉定理總結

費馬小定理 fermat theory 假如p是質數,且 a,p 1,那麼 a p 1 1 mod p 即 假如a是整數,p是質數,且a,p互質 即兩者只有乙個公約數1 那麼a的 p 1 次方除以p的餘數恆等於1。尤拉定理,也稱費馬 尤拉定理 是乙個關於同餘的性質。尤拉定理表明,若n,a為正整數,且...

費馬小定理和尤拉定理及其證明

費馬小定理 若p是素數,a是正整數且不能被p整除,則 ap 1 1 modp a p 1 1 mo dp 費馬小定理的擴充套件 ap a m odp ap a m odp 尤拉定理 對任意互素的a和n,設 n n 為小於n且與n互素的正整數的個數,有a n 1 mo dn a n 1 mod n 尤...