QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#594236 | #7309. Compressed LCS | Urd | Compile Error | / | / | C++17 | 3.8kb | 2024-09-27 20:31:25 | 2024-09-27 20:31:27 |
Due to the privacy settings of the submitter, you are not allowed to view this code.
详细
answer.code: In function ‘void Proc(int, int)’: answer.code:58:43: error: too few arguments to function ‘auto SufQ(int)’ 58 | dp[l][j] = std::max(dp[l][j], SufQ() + p[ch][l]); | ~~~~^~ answer.code:35:6: note: declared here 35 | auto SufQ(int x) { | ^~~~