QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#640546 | #5. 在线 O(1) 逆元 | Yu_mx | Compile Error | / | / | C++14 | 369b | 2024-10-14 14:10:37 | 2024-10-14 14:10:37 |
Judging History
你现在查看的是测评时间为 2024-10-14 14:10:37 的历史记录
- [2024-11-05 22:05:19]
- 管理员手动重测本题所有提交记录
- 测评结果:Compile Error
- 用时:0ms
- 内存:0kb
- [2024-10-14 14:10:37]
- 评测
- 测评结果:Compile Error
- 用时:0ms
- 内存:0kb
- [2024-10-14 14:10:37]
- 提交
answer
#include<bits/stdc++.h>
using namespace std;
#define ll long long
#define ios ios::sync_with_stdio(0),cin.tie(0),cout.tie(0)
#define endl '\n'
#include<inv.h>
int mod;
void init(int p){
mod = p;
}
int inv(int x){
int p = mod;
int k = p-2;
int res = 1%p;
while(k){
if(k&1) res = 1LL*res*a%p;
k >>= 1;
a = 1LL*a*a%p;
}
return res;
}
详细
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:6:9: fatal error: inv.h: No such file or directory 6 | #include<inv.h> | ^~~~~~~ compilation terminated.