随笔 - 46  文章 - 0  评论 - 1  阅读 - 6185

乘法逆元

ref:http://blog.csdn.net/acdreamers/article/details/8220787

Code(luogu 3811):

复制代码
 1 #include<cstdio>
 2 #include<cstring>
 3 #include<algorithm>
 4 #define MN 20001005
 5 using namespace std;
 6 inline int in(){
 7     int x=0;bool f=0; char c;
 8     for (;(c=getchar())<'0'||c>'9';f=c=='-');
 9     for (x=c-'0';(c=getchar())>='0'&&c<='9';x=(x<<3)+(x<<1)+c-'0');
10     return f?-x:x;
11 }
12 int inv[MN],n,p;
13 int main()
14 {
15     n=in();p=in();
16     inv[1]=1;printf("%d\n",inv[1]);
17     for (int i=2;i<=n;++i)
18     inv[i]=(1ll*(p-(p/i))*inv[p%i])%p,printf("%d\n",inv[i]);
19     return 0;
20 }
复制代码
posted on   whz2002  阅读(138)  评论(0编辑  收藏  举报
< 2025年4月 >
30 31 1 2 3 4 5
6 7 8 9 10 11 12
13 14 15 16 17 18 19
20 21 22 23 24 25 26
27 28 29 30 1 2 3
4 5 6 7 8 9 10

点击右上角即可分享
微信分享提示