QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#209311#5. 在线 O(1) 逆元fstqwq70 743ms42852kbC++14397b2023-10-10 13:53:072023-10-10 13:53:08

Judging History

你现在查看的是测评时间为 2023-10-10 13:53:08 的历史记录

  • [2024-11-05 21:53:17]
  • 管理员手动重测本题所有提交记录
  • 测评结果:60
  • 用时:3922ms
  • 内存:42948kb
  • [2023-10-10 13:53:08]
  • 评测
  • 测评结果:70
  • 用时:743ms
  • 内存:42852kb
  • [2023-10-10 13:53:07]
  • 提交

answer

const int mod = 998244353;
const int pre = 1e7;

int a[pre];

void init(int p) {
	a[0] = a[1] = 1;
	for (int i = 2; i < pre; i++) {
		a[i] = 1ll * (mod - mod / i) * a[mod % i] % mod;
	}
}

int inv(int x) {
	if (x < pre) return a[x];
	int ret = 1;
	while (x >= pre) {
		ret = 1ll * ret * (mod - mod / x) % mod;
		x = mod % x;
	}
	ret = 1ll * ret * a[x] % mod;	
	return ret;
}

詳細信息

Test #1:

score: 30
Accepted
time: 72ms
memory: 42852kb

Test #2:

score: 40
Accepted
time: 743ms
memory: 42728kb

Test #3:

score: 0
Time Limit Exceeded