QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#630788#9448. Product Matrixucup-team4645#Compile Error//C++23205b2024-10-11 20:25:072024-10-11 20:25:08

詳細信息

answer.code: In function ‘int qpow(int, int)’:
answer.code:6:45: error: ‘P’ was not declared in this scope
    6 |                 if(y & 1) res = (res * x) % P;
      |                                             ^
answer.code:7:31: error: ‘P’ was not declared in this scope
    7 |                 x = (x * x) % P;
      |                               ^
answer.code: In function ‘int Inv(int)’:
answer.code:15:23: error: ‘P’ was not declared in this scope
   15 |         return qpow(x,P - 2);
      |                       ^