QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#465246 | #8768. Arrested Development | ucup-team1400# | Compile Error | / | / | C++14 | 801b | 2024-07-06 19:26:29 | 2024-07-06 19:26:29 |
Due to the privacy settings of the submitter, you are not allowed to view this code.
詳細信息
answer.code: In function ‘int main()’: answer.code:31:10: error: missing template arguments before ‘dp’ 31 | vector dp(MAX, INF); | ^~ answer.code:32:3: error: ‘dp’ was not declared in this scope 32 | dp[0] = 0; | ^~ answer.code:34:13: warning: structured bindings only available with ‘-std=c++17’ or ‘-std=gnu++17’ [-Wc++17-extensions] 34 | for (auto [a, b] : difs) { | ^