QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#641213 | #5. 在线 O(1) 逆元 | Idtwtei | 80 | 4976ms | 19116kb | C++14 | 281b | 2024-10-14 19:12:10 | 2024-11-05 22:06:31 |
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: 10
Accepted
time: 19ms
memory: 18984kb
Test #2:
score: 20
Accepted
time: 646ms
memory: 19116kb
Test #3:
score: 30
Accepted
time: 3069ms
memory: 18984kb
Test #4:
score: 20
Accepted
time: 4976ms
memory: 19112kb
Test #5:
score: 0
Time Limit Exceeded