QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#310623 | #5. 在线 O(1) 逆元 | KiharaTouma | 100 ✓ | 5487ms | 394488kb | C++14 | 310b | 2024-01-21 16:21:20 | 2024-01-21 16:21:21 |
Judging History
answer
//qoj5
#include "inv.h"
const int P = 998244353;
const int N = 1e8 + 5;
int a[N];
void init(int p){
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];
} else {
return P - 1ll * (P / x) * inv(P%x) % P;
}
}
詳細信息
Test #1:
score: 30
Accepted
time: 706ms
memory: 394488kb
Test #2:
score: 40
Accepted
time: 1192ms
memory: 394428kb
Test #3:
score: 30
Accepted
time: 5487ms
memory: 394336kb