QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#629277 | #5. 在线 O(1) 逆元 | 7_divided_by_3 | 70 | 2568ms | 3892kb | C++20 | 290b | 2024-10-11 10:13:18 | 2024-10-11 10:13:20 |
Judging History
answer
int modp;
void init(int p)
{
modp=p;
}
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;
}
int inv(int x)
{
return powp(x,modp-2,modp);
}
详细
Pretests
Final Tests
Test #1:
score: 30
Accepted
time: 23ms
memory: 3892kb
Test #2:
score: 40
Accepted
time: 2568ms
memory: 3784kb
Test #3:
score: 0
Time Limit Exceeded