QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#620477#3558. Constellation 3Dimash#Compile Error//C++2384b2024-10-07 18:26:532024-10-07 18:26:53

Judging History

This is the latest submission verdict.

  • [2024-10-07 18:26:53]
  • Judged
  • [2024-10-07 18:26:53]
  • Submitted

answer

                dp[i][j] = max(dp[i][j], max((ll)sf[i - 1][j + 1], mx[i - 1][j]));

详细

answer.code:1:17: error: ‘dp’ does not name a type
    1 |                 dp[i][j] = max(dp[i][j], max((ll)sf[i - 1][j + 1], mx[i - 1][j]));
      |                 ^~