QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#4934 | #5. 在线 O(1) 逆元 | zombie462 | 70 | 2436ms | 3616kb | C++11 | 178b | 2020-10-19 09:40:34 | 2021-12-19 05:37:49 |
Judging History
你现在查看的是测评时间为 2021-12-19 05:37:49 的历史记录
- [2023-08-10 23:21:45]
- System Update: QOJ starts to keep a history of the judgings of all the submissions.
- [2020-10-19 09:40:34]
- 提交
answer
#include <bits/stdc++.h>
#include "inv.h"
using namespace std;
const int mod=998244353;
int inv(int a){
return a<=1?1:1LL*(mod-mod/a)*inv(mod%a)%mod;
}
void init(int p){}
詳細信息
Test #1:
score: 30
Accepted
time: 27ms
memory: 3616kb
Test #2:
score: 40
Accepted
time: 2436ms
memory: 3612kb
Test #3:
score: 0
Time Limit Exceeded