QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#369372 | #6320. Parallel Processing (Hard) | ucup-team864 | Compile Error | / | / | C++14 | 1.3kb | 2024-03-28 04:51:23 | 2024-03-28 04:51:24 |
Due to the privacy settings of the submitter, you are not allowed to view this code.
详细
answer.code: In function ‘int main()’: answer.code:42:9: error: ‘memset’ was not declared in this scope 42 | memset(nd, -1, sizeof nd); | ^~~~~~ answer.code:8:1: note: ‘memset’ is defined in header ‘<cstring>’; did you forget to ‘#include <cstring>’? 7 | #include <cassert> +++ |+#include <cstring> 8 | answer.code:64:18: warning: structured bindings only available with ‘-std=c++17’ or ‘-std=gnu++17’ [-Wc++17-extensions] 64 | for(auto [x, y] : A) cout << y << ' ' << x << ' ' << y << '\n'; | ^