QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#209315#5. 在线 O(1) 逆元fstqwq80 5278ms82012kbC++14443b2023-10-10 13:54:152024-11-05 21:53:27

Judging History

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

  • [2024-11-05 21:53:27]
  • 管理员手动重测本题所有提交记录
  • 测评结果:80
  • 用时:5278ms
  • 内存:82012kb
  • [2023-10-10 13:54:16]
  • 评测
  • 测评结果:70
  • 用时:825ms
  • 内存:81916kb
  • [2023-10-10 13:54:15]
  • 提交

answer

#pragma GCC optimize("Ofast,unroll-loops")

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

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;
}

詳細信息


Pretests


Final Tests

Test #1:

score: 10
Accepted
time: 190ms
memory: 81812kb

Test #2:

score: 20
Accepted
time: 838ms
memory: 81988kb

Test #3:

score: 30
Accepted
time: 3400ms
memory: 82012kb

Test #4:

score: 20
Accepted
time: 5278ms
memory: 81936kb

Test #5:

score: 0
Time Limit Exceeded