QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#629277#5. 在线 O(1) 逆元7_divided_by_370 2568ms3892kbC++20290b2024-10-11 10:13:182024-10-11 10:13:20

Judging History

你现在查看的是测评时间为 2024-10-11 10:13:20 的历史记录

  • [2024-11-05 22:05:19]
  • 管理员手动重测本题所有提交记录
  • 测评结果:30
  • 用时:2570ms
  • 内存:3744kb
  • [2024-10-11 10:13:20]
  • 评测
  • 测评结果:70
  • 用时:2568ms
  • 内存:3892kb
  • [2024-10-11 10:13:18]
  • 提交

answer

int modp;
void init(int p)
{
    modp=p;   
}

int powp(int a,int b,int p)
{
    int res=1;
    a%=p;
    while(b)
    {
        if(b&1)res=(1LL*res*a)%p;
        a=(1LL*a*a)%p;
        b>>=1;
    }
    return res;
}

int inv(int x)
{
    return powp(x,modp-2,modp);
}

详细


Pretests


Final Tests

Test #1:

score: 30
Accepted
time: 23ms
memory: 3892kb

Test #2:

score: 40
Accepted
time: 2568ms
memory: 3784kb

Test #3:

score: 0
Time Limit Exceeded