QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#515172#5. 在线 O(1) 逆元HHHashmap0 0ms3884kbC++14165b2024-08-11 15:41:132024-11-05 22:03:05

Judging History

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

  • [2024-11-05 22:03:05]
  • 管理员手动重测本题所有提交记录
  • 测评结果:0
  • 用时:0ms
  • 内存:3884kb
  • [2024-08-11 15:41:13]
  • 评测
  • 测评结果:0
  • 用时:0ms
  • 内存:3884kb
  • [2024-08-11 15:41:13]
  • 提交

answer

#include <bits/stdc++.h>
#include "inv.h"
using namespace std;
int m;
void init(int p)
{
   m=p;
   return;
}
int inv(int x)
{
   return (m-m/x)/(m%x);
}

詳細信息


Pretests


Final Tests

Test #1:

score: 0
Wrong Answer
time: 0ms
memory: 3804kb

Test #2:

score: 0
Wrong Answer
time: 0ms
memory: 3884kb

Test #3:

score: 0
Wrong Answer
time: 0ms
memory: 3880kb

Test #4:

score: 0
Wrong Answer
time: 0ms
memory: 3884kb

Test #5:

score: 0
Wrong Answer
time: 0ms
memory: 3732kb