QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#287474 | #5. 在线 O(1) 逆元 | acwing_gza | 0 | 675ms | 394508kb | C++14 | 255b | 2023-12-20 17:09:36 | 2024-11-05 21:56:06 |
Judging History
answer
#include "inv.h"
const int N=1e8+10;
int mod;
int a[N];
void init(int p)
{
mod=p;
a[0]=a[1]=1;
for(int i=2;i<=N;i++) a[i]=mod-1ll*(mod/i)*a[mod%i]%mod;
}
int inv(int x)
{
if (x<=N) return a[x];
return mod-1ll*(mod/x)*inv(mod%x)%mod;
}
詳細信息
Pretests
Final Tests
Test #1:
score: 0
Wrong Answer
time: 655ms
memory: 394508kb
Test #2:
score: 0
Wrong Answer
time: 673ms
memory: 394296kb
Test #3:
score: 0
Wrong Answer
time: 675ms
memory: 394496kb
Test #4:
score: 0
Wrong Answer
time: 669ms
memory: 394328kb
Test #5:
score: 0
Wrong Answer
time: 662ms
memory: 394376kb