QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#102567#5. 在线 O(1) 逆元liuzhenhao090 0ms0kbC++14216b2023-05-03 14:43:452023-05-03 14:43:48

Judging History

你现在查看的是测评时间为 2023-05-03 14:43:48 的历史记录

  • [2024-11-05 21:49:18]
  • 管理员手动重测本题所有提交记录
  • 测评结果:0
  • 用时:0ms
  • 内存:0kb
  • [2023-08-10 23:21:45]
  • System Update: QOJ starts to keep a history of the judgings of all the submissions.
  • [2023-05-03 14:43:48]
  • 评测
  • 测评结果:0
  • 用时:0ms
  • 内存:0kb
  • [2023-05-03 14:43:45]
  • 提交

answer

#include<bits/stdc++.h>
#include "inv.h"
int iv[10000010];
void init(int p){
	iv[1] = 1;
	for(int i = 2; i <= 10000000; i++) iv[i] = (long long)(p - p / i) * iv[p % i] % p;
}
int inv(int x){
	return iv[x];
}

详细

Test #1:

score: 0
Runtime Error

Test #2:

score: 0
Runtime Error

Test #3:

score: 0
Runtime Error