QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#273443 | #7881. Computational Complexity | ucup-team121# | Compile Error | / | / | C++23 | 2.1kb | 2023-12-02 23:59:50 | 2023-12-02 23:59:51 |
Due to the privacy settings of the submitter, you are not allowed to view this code.
详细
answer.code: In function ‘int main()’: answer.code:68:24: error: expected ‘;’ before ‘sg’ 68 | sf[i]=take(sf[i],i) | ^ | ; ...... 71 | sg[i]=max(i,sf[i/2]+sf[i/3]+sf[i/4]+sf[i/5]); | ~~ answer.code:72:24: error: expected ‘;’ before ‘}’ token 72 | sg[i]=take(sg[i],i) | ^ | ; 73 | // while(sg[i]>=mod){sg[i]-=mod;} 74 | } | ~