QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#629285 | #5. 在线 O(1) 逆元 | 7_divided_by_3 | 0 | 0ms | 0kb | C++20 | 343b | 2024-10-11 10:16:37 | 2024-10-11 10:16:38 |
Judging History
answer
int invans[100000001];
int powp(int a,int b,int p)
{
int res=1;
a%=p;
while(b)
{
if(b&1)res=(1LL*res*a)%p;
a=(1LL*a*a)%p;
b>>=1;
}
return res;
}
void init(int p)
{
for(int i=1;i<=100000000;i++)
invans[i]=powp(i,p-2,p);
}
int inv(int x)
{
return invans[x];
}
詳細信息
Pretests
Final Tests
Test #1:
score: 0
Time Limit Exceeded
Test #2:
score: 0
Time Limit Exceeded
Test #3:
score: 0
Time Limit Exceeded