QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#775496 | #5. 在线 O(1) 逆元 | Physics212303 | 100 ✓ | 5345ms | 394504kb | C++17 | 233b | 2024-11-23 16:04:55 | 2024-11-23 16:04:55 |
Judging History
answer
#include "inv.h"
const int N=1e8;
static int P,a[N+1];
void init(int p){
P=p,a[0]=a[1]=1;
for(int i=2;i<=N;i++)
a[i]=P-1ll*(P/i)*a[P%i]%P;
}
int inv(int x){
if(x<=N)return a[x];
return P-1ll*(P/x)*inv(P%x)%P;
}
详细
Pretests
Final Tests
Test #1:
score: 10
Accepted
time: 692ms
memory: 394504kb
Test #2:
score: 20
Accepted
time: 1149ms
memory: 394300kb
Test #3:
score: 30
Accepted
time: 2985ms
memory: 394448kb
Test #4:
score: 20
Accepted
time: 4402ms
memory: 394500kb
Test #5:
score: 20
Accepted
time: 5345ms
memory: 394436kb