QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#293458#5. 在线 O(1) 逆元iee100 ✓5539ms394464kbC++14303b2023-12-29 10:29:442024-11-05 21:56:54

Judging History

你现在查看的是最新测评结果

  • [2024-11-05 21:56:54]
  • 管理员手动重测本题所有提交记录
  • 测评结果:100
  • 用时:5539ms
  • 内存:394464kb
  • [2023-12-29 10:29:45]
  • 评测
  • 测评结果:70
  • 用时:1362ms
  • 内存:394196kb
  • [2023-12-29 10:29:44]
  • 提交

answer

#include <bits/stdc++.h>
using namespace std;
constexpr int P = 998244353, N = 1e8;
int v[N];
void init(int p) {
	v[1] = 1;
	for (int i = 2; i < N; i++) {
		v[i] = P - 1ll * v[P % i] * (P / i) % P;
	}
}
int inv(int x) {
	if (x < N) return v[x];
	return P - 1ll * inv(P % x) * (P / x) % P;
}

Details


Pretests


Final Tests

Test #1:

score: 10
Accepted
time: 656ms
memory: 394408kb

Test #2:

score: 20
Accepted
time: 1125ms
memory: 394456kb

Test #3:

score: 30
Accepted
time: 3047ms
memory: 394308kb

Test #4:

score: 20
Accepted
time: 4538ms
memory: 394464kb

Test #5:

score: 20
Accepted
time: 5539ms
memory: 394332kb