QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#624807#5. 在线 O(1) 逆元dww_133780 5002ms394328kbC++14324b2024-10-09 16:39:242024-11-05 22:04:46

Judging History

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

  • [2024-11-05 22:04:46]
  • 管理员手动重测本题所有提交记录
  • 测评结果:80
  • 用时:5002ms
  • 内存:394328kb
  • [2024-10-09 16:39:24]
  • 评测
  • 测评结果:70
  • 用时:1568ms
  • 内存:394456kb
  • [2024-10-09 16:39:24]
  • 提交

answer

#include "inv.h"

const int MAXN = 1e8 + 7;
const int MOD = 998244353;
int invt[MAXN];

void init(int p)
{
	invt[1] = 1;
	for(int i = 2 ; i < MAXN ; i++) invt[i] = p - 1ll * p / i * invt[p % i] % p;
}

int inv(int x)
{
	if(x < MAXN) return invt[x];
	else return  MOD - 1ll * (MOD / x) * inv(MOD % x) % MOD;
}

詳細信息


Pretests


Final Tests

Test #1:

score: 10
Accepted
time: 986ms
memory: 394316kb

Test #2:

score: 20
Accepted
time: 1462ms
memory: 394296kb

Test #3:

score: 30
Accepted
time: 3514ms
memory: 394328kb

Test #4:

score: 20
Accepted
time: 5002ms
memory: 394300kb

Test #5:

score: 0
Time Limit Exceeded