QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#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.
Details
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 | } | ~