QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#641213 | #5. 在线 O(1) 逆元 | Idtwtei | 100 | 5162ms | 19096kb | C++14 | 281b | 2024-10-14 19:12:10 | 2024-10-14 19:12:11 |
Judging History
answer
#include"inv.h"
#include<bits/stdc++.h>
using namespace std;
const int MOD=998244353,N=MOD>>8;
int I[N];
void init(int p){ I[1]=1; for(int i=2;i<N;++i) I[i]=MOD-1ll*(MOD/i)*I[MOD%i]%MOD; }
int inv(int x){
if(x<N) return I[x];
return MOD-1ll*(MOD/x)*inv(MOD%x)%MOD;
}
详细
Pretests
Final Tests
Test #1:
score: 30
Accepted
time: 21ms
memory: 19096kb
Test #2:
score: 40
Accepted
time: 531ms
memory: 18924kb
Test #3:
score: 30
Accepted
time: 5162ms
memory: 18904kb