QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#102586 | #5. 在线 O(1) 逆元 | liuzhenhao09 | 0 | 0ms | 0kb | C++20 | 269b | 2023-05-03 14:52:47 | 2024-11-05 21:49:21 |
Judging History
answer
#include<bits/stdc++.h>
#include "inv.h"
using namespace std;
const int MOD = 998244353;
int iv[20000010];
int inv(int x){
return iv[x];
}
void init(int p){
iv[1] = 1;
for(int i = 2; i <= 20000000; i++) iv[i] = 1LL * (MOD - MOD / i) * iv[MOD % i] % MOD;
}
詳細信息
Pretests
Final Tests
Test #1:
score: 0
Runtime Error
Test #2:
score: 0
Runtime Error
Test #3:
score: 0
Runtime Error
Test #4:
score: 0
Runtime Error
Test #5:
score: 0
Runtime Error