QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#559738 | #8221. 多方计算 | DaiRuiChen007 | Compile Error | / | / | C++17 | 436b | 2024-09-12 08:52:04 | 2024-09-12 08:52:11 |
Judging History
answer
#include<bits/stdc++.h>
#include "mpc.h"
#include "grader.cpp"
using namespace std;
int N,M;
int precalc(int n,int m) { N=n,M=m; return n+m+3; }
bool transmit(player &p,int r,int i) {
int x=r-1-i;
if(x<0) {
if(x>=-8) x+=M+4;
else x+=M+19;
}
if(x<0) return 0;
if(p.last_message) {
int y=x;
while(p.memory[y]) p.memory[y++]=0;
p.memory[y]=1;
}
bool v=p.memory[x];
if(i<N) p.memory[x]=0;
return v;
}
详细
answer.code:3:10: fatal error: grader.cpp: No such file or directory 3 | #include "grader.cpp" | ^~~~~~~~~~~~ compilation terminated.