QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#629277 | #5. 在线 O(1) 逆元 | 7_divided_by_3 | 30 | 2570ms | 3744kb | C++20 | 290b | 2024-10-11 10:13:18 | 2024-11-05 22:05:19 |
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: 10
Accepted
time: 22ms
memory: 3728kb
Test #2:
score: 20
Accepted
time: 2570ms
memory: 3744kb
Test #3:
score: 0
Time Limit Exceeded
Test #4:
score: 0
Time Limit Exceeded
Test #5:
score: 0
Time Limit Exceeded