QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#293465 | #5. 在线 O(1) 逆元 | iee | 100 ✓ | 5721ms | 394452kb | C++11 | 358b | 2023-12-29 10:38:05 | 2024-11-05 21:57:17 |
Judging History
answer
#include "inv.h"
const int N = 1e8;
int mod;
int inv_list[N + 7];
void init(int p){
mod = p;
inv_list[0] = inv_list[1] = 1;
for (register int i = 2; i <= N; i++){
inv_list[i] = mod - 1ll * (mod / i) * inv_list[mod % i] % mod;
}
}
int inv(int x){
if (x <= N) return inv_list[x];
return mod - 1ll * (mod / x) * inv(mod % x) % mod;
}
詳細信息
Pretests
Final Tests
Test #1:
score: 10
Accepted
time: 926ms
memory: 394316kb
Test #2:
score: 20
Accepted
time: 1279ms
memory: 394312kb
Test #3:
score: 30
Accepted
time: 3247ms
memory: 394312kb
Test #4:
score: 20
Accepted
time: 4718ms
memory: 394452kb
Test #5:
score: 20
Accepted
time: 5721ms
memory: 394316kb