QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#489099 | #5. 在线 O(1) 逆元 | _FJqwq | Compile Error | / | / | C++14 | 299b | 2024-07-24 17:58:58 | 2024-07-24 17:58:58 |
Judging History
你现在查看的是测评时间为 2024-07-24 17:58:58 的历史记录
- [2024-11-05 22:01:47]
- 管理员手动重测本题所有提交记录
- 测评结果:Compile Error
- 用时:0ms
- 内存:0kb
- [2024-07-24 17:58:58]
- 评测
- 测评结果:Compile Error
- 用时:0ms
- 内存:0kb
- [2024-07-24 17:58:58]
- 提交
answer
#include<bits/stdc++.h>
#include<inv.h>
using namespace std;
#define ll long long
const int N=2005,mod=998244353;
ll power(ll x,ll y){
if(!y) return 1ll;
ll z=power(x,y>>1ll);
z=z*z%mod;
if(y&1ll) return z*x%mod
return z;
}
void init(int p){}
int inv(int x){return power(x,mod-2);}
詳細信息
implementer.cpp: In function ‘int main()’: implementer.cpp:22:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 22 | scanf("%d", &n); | ~~~~~^~~~~~~~~~ answer.code:2:9: fatal error: inv.h: No such file or directory 2 | #include<inv.h> | ^~~~~~~ compilation terminated.