Skip to content
Search
K
Main Navigation
首页
模板
题库
更多
在线运行
算法博客
Clist统计
Appearance
Menu
Return to top
On this page
Table of Contents for current page
逆元
用于替代除法不能取模
一般有三种方法求逆元:
模数是素数时
模数为任意时
求一组逆元
在python中可以使用
pow(a,-1,MOD)
来直接求出逆元