QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#629275 | #5. 在线 O(1) 逆元 | 7_divided_by_3 | 70 | 2473ms | 3888kb | C++20 | 322b | 2024-10-11 10:11:49 | 2024-10-11 10:11:49 |
Judging History
answer
int modp;
void init(int p)
{
modp=p;
}
constexpr long long powp(long long a,long long b,long long p)
{
long long res=1;
a%=p;
while(b)
{
if(b&1)res=(res*a)%p;
a=(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: 26ms
memory: 3728kb
Test #2:
score: 40
Accepted
time: 2473ms
memory: 3888kb
Test #3:
score: 0
Time Limit Exceeded